We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bbaf03 commit fc2207eCopy full SHA for fc2207e
4 files changed
examples/b-hello.velv
@@ -0,0 +1 @@
1
+push "hello there." call println halt 0
examples/hello.velv
@@ -1,3 +1,3 @@
push "hello there."
2
call println
3
-halt 0
+halt 0
velvc/parser/parser.go
@@ -36,6 +36,13 @@ type Parser struct {
36
}
37
38
func New(tokenL [][]tokens.Token) Parser {
39
+ filtered := [][]tokens.Token{}
40
+ for _, tl := range tokenL {
41
+ if len(tl) > 0 {
42
+ filtered = append(filtered, tl)
43
+ }
44
45
+
46
return Parser{tokenL: tokenL}
47
48
velvc/version.txt
@@ -1 +1 @@
-1.2.0
+1.2.1
0 commit comments