File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed
Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -358,21 +358,6 @@ class ModelASTWalker : public ASTWalker {
358358 // / is considered as one, e.g. object literal expression.
359359 uint8_t AvoidPassingSyntaxToken = 0 ;
360360
361- class InactiveClauseRAII {
362- const bool wasInInactiveClause;
363- bool &isInInactiveClause;
364-
365- public:
366- InactiveClauseRAII (bool &isInInactiveClauseArg, bool enteringInactiveClause)
367- : wasInInactiveClause(isInInactiveClauseArg),
368- isInInactiveClause (isInInactiveClauseArg) {
369- isInInactiveClause |= enteringInactiveClause;
370- }
371- ~InactiveClauseRAII () { isInInactiveClause = wasInInactiveClause; }
372- };
373- friend class InactiveClauseRAII ;
374- bool inInactiveClause = false ;
375-
376361public:
377362 SyntaxModelWalker &Walker;
378363 ArrayRef<SyntaxNode> TokenNodes;
You can’t perform that action at this time.
0 commit comments