Example #1
0
 public JSXMemberExpression(IExpression obj, JSXIdentifier property, Location sourceLocation)
     : base(NodeType.JSXMemberExpression, sourceLocation)
 {
     Object   = obj;
     Property = property;
 }
Example #2
0
 public JSXNamespacedName(JSXIdentifier parent, JSXIdentifier name, Location sourceLocation)
     : base(NodeType.JSXNamespacedName, sourceLocation)
 {
     this.Namespace = parent;
     this.Name      = name;
 }