Removed casting builtin properties
This commit is contained in:
parent
ec2162f752
commit
cf5915222e
1 changed files with 0 additions and 6 deletions
|
@ -21,9 +21,6 @@ namespace arookas {
|
||||||
public sunCallableSymbol Exit { get; private set; }
|
public sunCallableSymbol Exit { get; private set; }
|
||||||
public sunCallableSymbol Lock { get; private set; }
|
public sunCallableSymbol Lock { get; private set; }
|
||||||
public sunCallableSymbol Unlock { get; private set; }
|
public sunCallableSymbol Unlock { get; private set; }
|
||||||
public sunCallableSymbol Int { get; private set; }
|
|
||||||
public sunCallableSymbol Float { get; private set; }
|
|
||||||
public sunCallableSymbol Typeof { get; private set; }
|
|
||||||
|
|
||||||
// system variables
|
// system variables
|
||||||
public sunStorableSymbol Switch { get; private set; }
|
public sunStorableSymbol Switch { get; private set; }
|
||||||
|
@ -214,9 +211,6 @@ namespace arookas {
|
||||||
Exit = AddSystemBuiltin("exit");
|
Exit = AddSystemBuiltin("exit");
|
||||||
Lock = AddSystemBuiltin("lock");
|
Lock = AddSystemBuiltin("lock");
|
||||||
Unlock = AddSystemBuiltin("unlock");
|
Unlock = AddSystemBuiltin("unlock");
|
||||||
Int = AddSystemBuiltin("int");
|
|
||||||
Float = AddSystemBuiltin("float");
|
|
||||||
Typeof = AddSystemBuiltin("typeof");
|
|
||||||
|
|
||||||
// add system variables
|
// add system variables
|
||||||
Switch = AddSystemVariable("switch"); // storage for switch statements
|
Switch = AddSystemVariable("switch"); // storage for switch statements
|
||||||
|
|
Loading…
Reference in a new issue