30 references to VBStatementType
System.Data.Entity.Design (30)
System\Data\EntityModel\Emitters\FixUpCollection.cs (30)
225
Stack<
VBStatementType
> context = new Stack<
VBStatementType
>();
242
case
VBStatementType
.BeginClass:
254
case
VBStatementType
.EndClass:
262
case
VBStatementType
.BeginProperty:
275
case
VBStatementType
.EndProperty:
280
case
VBStatementType
.BeginMethod:
287
case
VBStatementType
.BeginPropertySetter:
295
case
VBStatementType
.BeginPropertyGetter:
482
private static
VBStatementType
GetVBStatementType(Stack<
VBStatementType
> context, string line, out string name)
485
VBStatementType
current =
VBStatementType
.Other;
499
current =
VBStatementType
.BeginClass;
513
case
VBStatementType
.BeginClass:
516
current =
VBStatementType
.EndClass;
523
current =
VBStatementType
.BeginClass;
529
current =
VBStatementType
.BeginMethod;
534
current =
VBStatementType
.BeginMethod;
539
current =
VBStatementType
.BeginProperty;
549
case
VBStatementType
.BeginProperty:
552
current =
VBStatementType
.EndProperty;
559
current =
VBStatementType
.BeginPropertyGetter;
564
current =
VBStatementType
.BeginPropertySetter;
572
case
VBStatementType
.BeginMethod:
575
current =
VBStatementType
.EndMethod;
582
case
VBStatementType
.BeginPropertyGetter:
585
current =
VBStatementType
.EndPropertyGetter;
592
case
VBStatementType
.BeginPropertySetter:
595
current =
VBStatementType
.EndPropertySetter;