mirror of
https://github.com/Open-Argon/argon-v3.git
synced 2025-12-06 08:56:07 +00:00
finish operators
This commit is contained in:
@@ -13,10 +13,12 @@ func translateVal(code UNPARSEcode, index int, codelines []UNPARSEcode, isLine b
|
||||
if isLine {
|
||||
if isBlank(code) {
|
||||
return nil, true, ArErr{}, 1
|
||||
} else if isDeleteVariable(code) {
|
||||
return parseDelete(code, index, codelines)
|
||||
} else if isComment(code) {
|
||||
resp, worked, err := parseComment(code, index, codelines)
|
||||
resp, worked, err, step := parseComment(code, index, codelines)
|
||||
if worked {
|
||||
return resp, worked, err, 1
|
||||
return resp, worked, err, step
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user