Added local-keyword node
This commit is contained in:
parent
b57c70ee9d
commit
d070143fba
2 changed files with 8 additions and 0 deletions
|
@ -3,4 +3,9 @@
|
|||
public sunConstKeyword(sunSourceLocation location)
|
||||
: base(location) { }
|
||||
}
|
||||
|
||||
class sunLocalKeyword : sunNode {
|
||||
public sunLocalKeyword(sunSourceLocation location)
|
||||
: base(location) { }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -217,6 +217,9 @@ namespace arookas {
|
|||
}
|
||||
}
|
||||
}
|
||||
if (id == __sunConstants.LOCAL) {
|
||||
return new sunLocalKeyword(location);
|
||||
}
|
||||
|
||||
// emergency fallback
|
||||
return null;
|
||||
|
|
Loading…
Reference in a new issue