diff options
Diffstat (limited to 'compiler/ast.go')
-rw-r--r-- | compiler/ast.go | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/compiler/ast.go b/compiler/ast.go index f0181f5..0b72f8d 100644 --- a/compiler/ast.go +++ b/compiler/ast.go @@ -119,15 +119,6 @@ func (s symbolPositionSet) sort() []symbolPosition { return sorted } -type byteRange struct { - from byte - to byte -} - -func (r byteRange) String() string { - return fmt.Sprintf("%v - %v", r.from, r.to) -} - type astNode interface { fmt.Stringer children() (astNode, astNode) |