Fixed: use the field, not the property
This commit is contained in:
parent
4d7c1da517
commit
3401e82667
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ namespace arookas {
|
|||
|
||||
// symbol table
|
||||
public override sunSymbolType Type { get { return sunSymbolType.Builtin; } }
|
||||
public override uint Data { get { return (uint)Index; } }
|
||||
public override uint Data { get { return (uint)mIndex; } }
|
||||
|
||||
public sunBuiltinSymbol(string name, int index)
|
||||
: this(name, null, index) { }
|
||||
|
|
Loading…
Reference in a new issue