Skip to content

Commit

Permalink
component: make the type aliases public (fix compilation with latest …
Browse files Browse the repository at this point in the history
…V from vlang/v#23544 )  (#593)
  • Loading branch information
felipensp authored Jan 22, 2025
1 parent cdba1e0 commit 9143584
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions component/grid_formula.v
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import regex
const no_cell = GridCell{-1, -1}

// Spreadsheet-like (ex: A1, B4, ...)
type AlphaCell = string
pub type AlphaCell = string

// Spreadsheet-like (ex: A1:B4, Z12:AB13, ...)
type AlphaCellBlock = string
pub type AlphaCellBlock = string

type ActiveCells = AlphaCell | AlphaCellBlock
pub type ActiveCells = AlphaCell | AlphaCellBlock

// Matrix-like (zero indexed)
pub struct GridCell {
Expand Down

0 comments on commit 9143584

Please sign in to comment.