Exemplo n.º 1
0
 public bool VisitNode(NameLiteral node)
 {
     // 'name'
     Append("'{0}'", node.Value);
     return true;
 }
Exemplo n.º 2
0
 public bool VisitNode(NameLiteral node)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 3
0
 public ObjectLiteral(NameLiteral objectName, VariableType @class = null, SourcePosition start = null, SourcePosition end = null) : base(ASTNodeType.ObjectLiteral, start, end)
 {
     Class = @class;
     Name  = objectName;
 }