Removed spaces from file names
This commit is contained in:
parent
7157e79e78
commit
f8a945b757
3 changed files with 14 additions and 0 deletions
|
@ -56,6 +56,20 @@ namespace arookas {
|
||||||
}
|
}
|
||||||
|
|
||||||
public abstract void Compile(sunCompiler compiler);
|
public abstract void Compile(sunCompiler compiler);
|
||||||
|
|
||||||
|
public static sunSymbolModifiers GetModifiers(sunNode modifierlist) {
|
||||||
|
if (modifierlist == null) {
|
||||||
|
return sunSymbolModifiers.None;
|
||||||
|
}
|
||||||
|
var modifiers = sunSymbolModifiers.None;
|
||||||
|
if (modifierlist.Any(i => i is sunConstKeyword)) {
|
||||||
|
modifiers |= sunSymbolModifiers.Constant;
|
||||||
|
}
|
||||||
|
if (modifierlist.Any(i => i is sunLocalKeyword)) {
|
||||||
|
modifiers |= sunSymbolModifiers.Local;
|
||||||
|
}
|
||||||
|
return modifiers;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
abstract class sunCallableSymbol : sunSymbol {
|
abstract class sunCallableSymbol : sunSymbol {
|
Loading…
Reference in a new issue