2 instantiations of PropDefinition
System.Data.Entity (2)
System\Data\Common\EntitySql\CqlParser.cs (2)
2108
yyval = new
PropDefinition
((Identifier)val_peek(1), (Node)val_peek(0));
3459
yyval = new
PropDefinition
((Identifier)val_peek(1), (Node)val_peek(0));
18 references to PropDefinition
System.Data.Entity (18)
System\Data\Common\EntitySql\AST\FunctionDefinition.cs (3)
23
private readonly NodeList<
PropDefinition
> _paramDefList;
31
internal FunctionDefinition(Identifier name, NodeList<
PropDefinition
> argDefList, Node body, int startPosition, int endPosition)
51
internal NodeList<
PropDefinition
> Parameters
System\Data\Common\EntitySql\AST\TypeDefinition.cs (3)
70
private readonly NodeList<
PropDefinition
> _propDefList;
75
internal RowTypeDefinition(NodeList<
PropDefinition
> propDefList)
83
internal NodeList<
PropDefinition
> Properties
System\Data\Common\EntitySql\CqlParser.cs (10)
2075
yyval = new AST.FunctionDefinition((Identifier)val_peek(5), ToNodeList<
PropDefinition
>(val_peek(4)), (Node)val_peek(1), Terminal(val_peek(6)).IPos, Terminal(val_peek(0)).IPos);
2094
yyval = new NodeList<
PropDefinition
>((
PropDefinition
)val_peek(0));
2101
yyval = ToNodeList<
PropDefinition
>(val_peek(2)).Add((
PropDefinition
)val_peek(0));
3438
yyval = new RowTypeDefinition(ToNodeList<
PropDefinition
>(val_peek(1)));
3445
yyval = new NodeList<
PropDefinition
>((
PropDefinition
)val_peek(0));
3452
yyval = ToNodeList<
PropDefinition
>(val_peek(2)).Add((
PropDefinition
)val_peek(0));
System\Data\Common\EntitySql\SemanticAnalyzer.cs (2)
392
private static List<DbVariableReferenceExpression> ConvertInlineFunctionParameterDefs(AST.NodeList<AST.
PropDefinition
> parameterDefs, SemanticResolver sr)
397
foreach (AST.
PropDefinition
paramDef in parameterDefs)