Siegfried Pammer 15 years ago
parent
commit
5dce34e991
  1. 1310
      src/Libraries/NRefactory/Project/Src/Parser/VBNet/Parser.cs
  2. 7
      src/Libraries/NRefactory/Project/Src/Parser/VBNet/VBNET.ATG

1310
src/Libraries/NRefactory/Project/Src/Parser/VBNet/Parser.cs

File diff suppressed because it is too large Load Diff

7
src/Libraries/NRefactory/Project/Src/Parser/VBNet/VBNET.ATG

@ -2127,6 +2127,7 @@ ObjectCreateExpression<out Expression oce>
List<Expression> arguments = null; List<Expression> arguments = null;
ArrayList dimensions = null; ArrayList dimensions = null;
oce = null; oce = null;
Location startLocation = la.Location;
bool canBeNormal; bool canBeReDim; bool canBeNormal; bool canBeReDim;
.) = .) =
"New" "New"
@ -2198,6 +2199,12 @@ ObjectCreateExpression<out Expression oce>
.) .)
) )
] ]
(.
if (oce != null) {
oce.StartLocation = startLocation;
oce.EndLocation = t.EndLocation;
}
.)
. .
LambdaExpr<out Expression expr> LambdaExpr<out Expression expr>

Loading…
Cancel
Save