Skip to content

Commit a0169c2

Browse files
committed
Re-generated parser bindings and bootstrap code.
1 parent e0875c7 commit a0169c2

File tree

17 files changed

+13370
-16192
lines changed

17 files changed

+13370
-16192
lines changed

src/AST/Stmt.cs

-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,6 @@ public Stmt()
149149
public SourceRange SourceRange { get; set; }
150150
public SourceLocation BeginLoc { get; set; }
151151
public SourceLocation EndLoc { get; set; }
152-
public Stmt StripLabelLikeStatements { get; set; }
153152

154153
public abstract T Visit<T>(IStmtVisitor<T> visitor);
155154
}

src/CppParser/Bindings/CLI/Stmt.cpp

+2-12
Original file line numberDiff line numberDiff line change
@@ -113,16 +113,6 @@ void CppSharp::Parser::AST::Stmt::EndLoc::set(CppSharp::Parser::SourceLocation v
113113
((::CppSharp::CppParser::AST::Stmt*)NativePtr)->endLoc = _marshal0;
114114
}
115115

116-
CppSharp::Parser::AST::Stmt^ CppSharp::Parser::AST::Stmt::StripLabelLikeStatements::get()
117-
{
118-
return (((::CppSharp::CppParser::AST::Stmt*)NativePtr)->stripLabelLikeStatements == nullptr) ? nullptr : gcnew CppSharp::Parser::AST::Stmt((::CppSharp::CppParser::AST::Stmt*)((::CppSharp::CppParser::AST::Stmt*)NativePtr)->stripLabelLikeStatements);
119-
}
120-
121-
void CppSharp::Parser::AST::Stmt::StripLabelLikeStatements::set(CppSharp::Parser::AST::Stmt^ value)
122-
{
123-
((::CppSharp::CppParser::AST::Stmt*)NativePtr)->stripLabelLikeStatements = (::CppSharp::CppParser::AST::Stmt*)value->NativePtr;
124-
}
125-
126116
CppSharp::Parser::AST::DeclStmt::DeclStmt(::CppSharp::CppParser::AST::DeclStmt* native)
127117
: CppSharp::Parser::AST::Stmt((::CppSharp::CppParser::AST::Stmt*)native)
128118
{
@@ -2444,12 +2434,12 @@ void CppSharp::Parser::AST::CapturedStmt::CaptureInits::set(System::Collections:
24442434
((::CppSharp::CppParser::AST::CapturedStmt*)NativePtr)->capture_inits = _tmpvalue;
24452435
}
24462436

2447-
CppSharp::Parser::AST::Stmt^ CppSharp::Parser::AST::CapturedStmt::capturedStmt::get()
2437+
CppSharp::Parser::AST::Stmt^ CppSharp::Parser::AST::CapturedStmt::CapturedStmt::get()
24482438
{
24492439
return (((::CppSharp::CppParser::AST::CapturedStmt*)NativePtr)->capturedStmt == nullptr) ? nullptr : gcnew CppSharp::Parser::AST::Stmt((::CppSharp::CppParser::AST::Stmt*)((::CppSharp::CppParser::AST::CapturedStmt*)NativePtr)->capturedStmt);
24502440
}
24512441

2452-
void CppSharp::Parser::AST::CapturedStmt::capturedStmt::set(CppSharp::Parser::AST::Stmt^ value)
2442+
void CppSharp::Parser::AST::CapturedStmt::CapturedStmt::set(CppSharp::Parser::AST::Stmt^ value)
24532443
{
24542444
((::CppSharp::CppParser::AST::CapturedStmt*)NativePtr)->capturedStmt = (::CppSharp::CppParser::AST::Stmt*)value->NativePtr;
24552445
}

src/CppParser/Bindings/CLI/Stmt.h

+1-7
Original file line numberDiff line numberDiff line change
@@ -239,12 +239,6 @@ namespace CppSharp
239239
void set(CppSharp::Parser::SourceLocation);
240240
}
241241

242-
property CppSharp::Parser::AST::Stmt^ StripLabelLikeStatements
243-
{
244-
CppSharp::Parser::AST::Stmt^ get();
245-
void set(CppSharp::Parser::AST::Stmt^);
246-
}
247-
248242
static operator CppSharp::Parser::AST::Stmt^(CppSharp::Parser::AST::StmtClass klass);
249243

250244
protected:
@@ -1366,7 +1360,7 @@ namespace CppSharp
13661360
void set(System::Collections::Generic::List<CppSharp::Parser::AST::Expr^>^);
13671361
}
13681362

1369-
property CppSharp::Parser::AST::Stmt^ capturedStmt
1363+
property CppSharp::Parser::AST::Stmt^ CapturedStmt
13701364
{
13711365
CppSharp::Parser::AST::Stmt^ get();
13721366
void set(CppSharp::Parser::AST::Stmt^);

0 commit comments

Comments
 (0)