Exemplo n.º 1
0
 internal ForNode(SqlLocation location, string identifier, string expression, string text)
 {
     Location   = location;
     Identifier = identifier;
     Expression = expression;
     Text       = text;
 }
Exemplo n.º 2
0
 internal PopulateNode(SqlLocation location, string text)
 {
     Location = location;
     Text     = text;
 }
 internal BindVariableNode(SqlLocation location, string variableName, string text) :
     base(location, variableName, text)
 {
 }
Exemplo n.º 4
0
 internal ExpandNode(SqlLocation location, string alias, string text)
 {
     Location = location;
     Alias    = alias;
     Text     = text;
 }
Exemplo n.º 5
0
 internal IfNode(SqlLocation location, string expression, string text)
 {
     Location   = location;
     Expression = expression;
     Text       = text;
 }
Exemplo n.º 6
0
 internal ValueNode(SqlLocation location, string variableName, string text)
 {
     Location     = location;
     VariableName = variableName;
     Text         = text;
 }
Exemplo n.º 7
0
 internal ParensNode(SqlLocation location)
 {
     Location         = location;
     OpenedParensNode = OtherNode.Of("(");
 }