Fixed: use the field, not the property

This commit is contained in:
arookas 2016-02-07 16:20:01 -05:00
parent 4d7c1da517
commit 3401e82667

View file

@ -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) { }