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