public FuncSymbol(string identifier, TwisterType type, SymbolAttribute attributes, object value) { Identifier = identifier; DataType = type; Attributes = attributes; Value = value; }
public BasicSymbol(string identifier, SymbolKind kind, SymbolAttribute attributes, TwisterType dataType, object value) { Identifier = identifier; Kind = kind; Attributes = attributes; DataType = dataType; Value = value; }