Skip to content

Commit 926e8ab

Browse files
committed
Regenerate the parser bindings
Signed-off-by: Dimitar Dobrev <[email protected]>
1 parent 8ad78c3 commit 926e8ab

File tree

13 files changed

+17589
-14916
lines changed

13 files changed

+17589
-14916
lines changed

src/AST/Stmt.cs

+1
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ public Stmt()
147147
}
148148

149149
public SourceRange SourceRange { get; set; }
150+
public SourceLocation BeginLoc { get; set; }
150151
public SourceLocation EndLoc { get; set; }
151152
public Stmt StripLabelLikeStatements { get; set; }
152153

src/CppParser/Bindings/CLI/Stmt.cpp

+12
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,18 @@ void CppSharp::Parser::AST::Stmt::SourceRange::set(CppSharp::Parser::SourceRange
8989
((::CppSharp::CppParser::AST::Stmt*)NativePtr)->sourceRange = *(::CppSharp::CppParser::SourceRange*)value->NativePtr;
9090
}
9191

92+
CppSharp::Parser::SourceLocation CppSharp::Parser::AST::Stmt::BeginLoc::get()
93+
{
94+
return CppSharp::Parser::SourceLocation((::CppSharp::CppParser::SourceLocation*)&((::CppSharp::CppParser::AST::Stmt*)NativePtr)->beginLoc);
95+
}
96+
97+
void CppSharp::Parser::AST::Stmt::BeginLoc::set(CppSharp::Parser::SourceLocation value)
98+
{
99+
auto _marshal0 = ::CppSharp::CppParser::SourceLocation();
100+
_marshal0.ID = value.ID;
101+
((::CppSharp::CppParser::AST::Stmt*)NativePtr)->beginLoc = _marshal0;
102+
}
103+
92104
CppSharp::Parser::SourceLocation CppSharp::Parser::AST::Stmt::EndLoc::get()
93105
{
94106
return CppSharp::Parser::SourceLocation((::CppSharp::CppParser::SourceLocation*)&((::CppSharp::CppParser::AST::Stmt*)NativePtr)->endLoc);

src/CppParser/Bindings/CLI/Stmt.h

+6
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,12 @@ namespace CppSharp
227227
void set(CppSharp::Parser::SourceRange^);
228228
}
229229

230+
property CppSharp::Parser::SourceLocation BeginLoc
231+
{
232+
CppSharp::Parser::SourceLocation get();
233+
void set(CppSharp::Parser::SourceLocation);
234+
}
235+
230236
property CppSharp::Parser::SourceLocation EndLoc
231237
{
232238
CppSharp::Parser::SourceLocation get();

src/CppParser/Bindings/CSharp/i686-apple-darwin12.4.0/CppSharp.CppParser.cs

+2,909-2,488
Large diffs are not rendered by default.

src/CppParser/Bindings/CSharp/i686-pc-win32-msvc/CppSharp.CppParser.cs

+2,904-2,483
Large diffs are not rendered by default.

src/CppParser/Bindings/CSharp/x86_64-apple-darwin12.4.0/CppSharp.CppParser.cs

+2,907-2,486
Large diffs are not rendered by default.

src/CppParser/Bindings/CSharp/x86_64-linux-gnu-cxx11abi/CppSharp.CppParser.cs

+2,906-2,485
Large diffs are not rendered by default.

src/CppParser/Bindings/CSharp/x86_64-linux-gnu/CppSharp.CppParser.cs

+2,908-2,487
Large diffs are not rendered by default.

src/CppParser/Bindings/CSharp/x86_64-pc-win32-msvc/CppSharp.CppParser.cs

+2,908-2,487
Large diffs are not rendered by default.

src/CppParser/Stmt.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ namespace CppSharp { namespace CppParser { namespace AST {
1414
Stmt::Stmt()
1515
: stmtClass(StmtClass::NoStmt)
1616
, sourceRange(SourceRange())
17+
, beginLoc(SourceLocation())
1718
, endLoc(SourceLocation())
1819
, stripLabelLikeStatements(nullptr)
1920
{
@@ -22,6 +23,7 @@ Stmt::Stmt()
2223
Stmt::Stmt(StmtClass klass)
2324
: stmtClass(klass)
2425
, sourceRange(SourceRange())
26+
, beginLoc(SourceLocation())
2527
, endLoc(SourceLocation())
2628
, stripLabelLikeStatements(nullptr)
2729
{

src/CppParser/Stmt.h

+1
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ class CS_API Stmt
153153
Stmt(StmtClass klass);
154154
StmtClass stmtClass;
155155
SourceRange sourceRange;
156+
SourceLocation beginLoc;
156157
SourceLocation endLoc;
157158
Stmt* stripLabelLikeStatements;
158159
};

src/Parser/ASTConverter.Expr.cs

+95
Large diffs are not rendered by default.

src/Parser/ASTConverter.Stmt.cs

+30
Original file line numberDiff line numberDiff line change
@@ -690,6 +690,7 @@ public override AST.Stmt VisitDeclStmt(DeclStmt stmt)
690690
{
691691
var _stmt = new AST.DeclStmt();
692692
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
693+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
693694
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
694695
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
695696
_stmt.IsSingleDecl = stmt.IsSingleDecl;
@@ -706,6 +707,7 @@ public override AST.Stmt VisitNullStmt(NullStmt stmt)
706707
{
707708
var _stmt = new AST.NullStmt();
708709
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
710+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
709711
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
710712
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
711713
_stmt.SemiLoc = VisitSourceLocation(stmt.SemiLoc);
@@ -717,6 +719,7 @@ public override AST.Stmt VisitCompoundStmt(CompoundStmt stmt)
717719
{
718720
var _stmt = new AST.CompoundStmt();
719721
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
722+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
720723
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
721724
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
722725
_stmt.BodyEmpty = stmt.BodyEmpty;
@@ -737,6 +740,7 @@ public override AST.Stmt VisitCaseStmt(CaseStmt stmt)
737740
{
738741
var _stmt = new AST.CaseStmt();
739742
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
743+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
740744
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
741745
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
742746
_stmt.KeywordLoc = VisitSourceLocation(stmt.KeywordLoc);
@@ -754,6 +758,7 @@ public override AST.Stmt VisitDefaultStmt(DefaultStmt stmt)
754758
{
755759
var _stmt = new AST.DefaultStmt();
756760
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
761+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
757762
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
758763
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
759764
_stmt.KeywordLoc = VisitSourceLocation(stmt.KeywordLoc);
@@ -767,6 +772,7 @@ public override AST.Stmt VisitLabelStmt(LabelStmt stmt)
767772
{
768773
var _stmt = new AST.LabelStmt();
769774
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
775+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
770776
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
771777
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
772778
_stmt.IdentLoc = VisitSourceLocation(stmt.IdentLoc);
@@ -779,6 +785,7 @@ public override AST.Stmt VisitAttributedStmt(AttributedStmt stmt)
779785
{
780786
var _stmt = new AST.AttributedStmt();
781787
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
788+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
782789
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
783790
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
784791
_stmt.AttrLoc = VisitSourceLocation(stmt.AttrLoc);
@@ -790,6 +797,7 @@ public override AST.Stmt VisitIfStmt(IfStmt stmt)
790797
{
791798
var _stmt = new AST.IfStmt();
792799
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
800+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
793801
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
794802
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
795803
_stmt.Cond = VisitExpression(stmt.Cond) as AST.Expr;
@@ -811,6 +819,7 @@ public override AST.Stmt VisitSwitchStmt(SwitchStmt stmt)
811819
{
812820
var _stmt = new AST.SwitchStmt();
813821
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
822+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
814823
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
815824
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
816825
_stmt.Cond = VisitExpression(stmt.Cond) as AST.Expr;
@@ -828,6 +837,7 @@ public override AST.Stmt VisitWhileStmt(WhileStmt stmt)
828837
{
829838
var _stmt = new AST.WhileStmt();
830839
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
840+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
831841
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
832842
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
833843
_stmt.Cond = VisitExpression(stmt.Cond) as AST.Expr;
@@ -842,6 +852,7 @@ public override AST.Stmt VisitDoStmt(DoStmt stmt)
842852
{
843853
var _stmt = new AST.DoStmt();
844854
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
855+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
845856
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
846857
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
847858
_stmt.Cond = VisitExpression(stmt.Cond) as AST.Expr;
@@ -856,6 +867,7 @@ public override AST.Stmt VisitForStmt(ForStmt stmt)
856867
{
857868
var _stmt = new AST.ForStmt();
858869
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
870+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
859871
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
860872
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
861873
_stmt.Init = VisitStatement(stmt.Init) as AST.Stmt;
@@ -873,6 +885,7 @@ public override AST.Stmt VisitGotoStmt(GotoStmt stmt)
873885
{
874886
var _stmt = new AST.GotoStmt();
875887
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
888+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
876889
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
877890
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
878891
_stmt.GotoLoc = VisitSourceLocation(stmt.GotoLoc);
@@ -884,6 +897,7 @@ public override AST.Stmt VisitIndirectGotoStmt(IndirectGotoStmt stmt)
884897
{
885898
var _stmt = new AST.IndirectGotoStmt();
886899
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
900+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
887901
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
888902
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
889903
_stmt.GotoLoc = VisitSourceLocation(stmt.GotoLoc);
@@ -896,6 +910,7 @@ public override AST.Stmt VisitContinueStmt(ContinueStmt stmt)
896910
{
897911
var _stmt = new AST.ContinueStmt();
898912
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
913+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
899914
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
900915
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
901916
_stmt.ContinueLoc = VisitSourceLocation(stmt.ContinueLoc);
@@ -906,6 +921,7 @@ public override AST.Stmt VisitBreakStmt(BreakStmt stmt)
906921
{
907922
var _stmt = new AST.BreakStmt();
908923
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
924+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
909925
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
910926
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
911927
_stmt.BreakLoc = VisitSourceLocation(stmt.BreakLoc);
@@ -916,6 +932,7 @@ public override AST.Stmt VisitReturnStmt(ReturnStmt stmt)
916932
{
917933
var _stmt = new AST.ReturnStmt();
918934
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
935+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
919936
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
920937
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
921938
_stmt.RetValue = VisitExpression(stmt.RetValue) as AST.Expr;
@@ -927,6 +944,7 @@ public override AST.Stmt VisitGCCAsmStmt(GCCAsmStmt stmt)
927944
{
928945
var _stmt = new AST.GCCAsmStmt();
929946
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
947+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
930948
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
931949
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
932950
_stmt.AsmLoc = VisitSourceLocation(stmt.AsmLoc);
@@ -954,6 +972,7 @@ public override AST.Stmt VisitMSAsmStmt(MSAsmStmt stmt)
954972
{
955973
var _stmt = new AST.MSAsmStmt();
956974
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
975+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
957976
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
958977
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
959978
_stmt.AsmLoc = VisitSourceLocation(stmt.AsmLoc);
@@ -984,6 +1003,7 @@ public override AST.Stmt VisitSEHExceptStmt(SEHExceptStmt stmt)
9841003
{
9851004
var _stmt = new AST.SEHExceptStmt();
9861005
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
1006+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
9871007
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
9881008
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
9891009
_stmt.ExceptLoc = VisitSourceLocation(stmt.ExceptLoc);
@@ -996,6 +1016,7 @@ public override AST.Stmt VisitSEHFinallyStmt(SEHFinallyStmt stmt)
9961016
{
9971017
var _stmt = new AST.SEHFinallyStmt();
9981018
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
1019+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
9991020
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
10001021
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
10011022
_stmt.FinallyLoc = VisitSourceLocation(stmt.FinallyLoc);
@@ -1007,6 +1028,7 @@ public override AST.Stmt VisitSEHTryStmt(SEHTryStmt stmt)
10071028
{
10081029
var _stmt = new AST.SEHTryStmt();
10091030
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
1031+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
10101032
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
10111033
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
10121034
_stmt.TryLoc = VisitSourceLocation(stmt.TryLoc);
@@ -1022,6 +1044,7 @@ public override AST.Stmt VisitSEHLeaveStmt(SEHLeaveStmt stmt)
10221044
{
10231045
var _stmt = new AST.SEHLeaveStmt();
10241046
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
1047+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
10251048
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
10261049
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
10271050
_stmt.LeaveLoc = VisitSourceLocation(stmt.LeaveLoc);
@@ -1032,6 +1055,7 @@ public override AST.Stmt VisitCapturedStmt(CapturedStmt stmt)
10321055
{
10331056
var _stmt = new AST.CapturedStmt();
10341057
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
1058+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
10351059
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
10361060
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
10371061
_stmt.capturedStmt = VisitStatement(stmt.capturedStmt) as AST.Stmt;
@@ -1048,6 +1072,7 @@ public override AST.Stmt VisitCXXCatchStmt(CXXCatchStmt stmt)
10481072
{
10491073
var _stmt = new AST.CXXCatchStmt();
10501074
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
1075+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
10511076
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
10521077
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
10531078
_stmt.CatchLoc = VisitSourceLocation(stmt.CatchLoc);
@@ -1060,6 +1085,7 @@ public override AST.Stmt VisitCXXTryStmt(CXXTryStmt stmt)
10601085
{
10611086
var _stmt = new AST.CXXTryStmt();
10621087
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
1088+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
10631089
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
10641090
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
10651091
_stmt.TryLoc = VisitSourceLocation(stmt.TryLoc);
@@ -1072,6 +1098,7 @@ public override AST.Stmt VisitCXXForRangeStmt(CXXForRangeStmt stmt)
10721098
{
10731099
var _stmt = new AST.CXXForRangeStmt();
10741100
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
1101+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
10751102
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
10761103
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
10771104
_stmt.Init = VisitStatement(stmt.Init) as AST.Stmt;
@@ -1094,6 +1121,7 @@ public override AST.Stmt VisitMSDependentExistsStmt(MSDependentExistsStmt stmt)
10941121
{
10951122
var _stmt = new AST.MSDependentExistsStmt();
10961123
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
1124+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
10971125
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
10981126
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
10991127
_stmt.KeywordLoc = VisitSourceLocation(stmt.KeywordLoc);
@@ -1107,6 +1135,7 @@ public override AST.Stmt VisitCoroutineBodyStmt(CoroutineBodyStmt stmt)
11071135
{
11081136
var _stmt = new AST.CoroutineBodyStmt();
11091137
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
1138+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
11101139
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
11111140
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
11121141
_stmt.HasDependentPromiseType = stmt.HasDependentPromiseType;
@@ -1129,6 +1158,7 @@ public override AST.Stmt VisitCoreturnStmt(CoreturnStmt stmt)
11291158
{
11301159
var _stmt = new AST.CoreturnStmt();
11311160
_stmt.SourceRange = VisitSourceRange(stmt.SourceRange);
1161+
_stmt.BeginLoc = VisitSourceLocation(stmt.BeginLoc);
11321162
_stmt.EndLoc = VisitSourceLocation(stmt.EndLoc);
11331163
_stmt.StripLabelLikeStatements = VisitStatement(stmt.StripLabelLikeStatements) as AST.Stmt;
11341164
_stmt.IsImplicit = stmt.IsImplicit;

0 commit comments

Comments
 (0)