File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -419,10 +419,6 @@ class Verifier : public ASTWalker {
419
419
// Always verify the node as a parsed node.
420
420
verifyParsed (node);
421
421
422
- // If we've bound names already, verify as a bound node.
423
- if (!SF || SF->ASTStage >= SourceFile::NameBound)
424
- verifyBound (node);
425
-
426
422
// If we've checked types already, do some extra verification.
427
423
if (!SF || SF->ASTStage >= SourceFile::TypeChecked) {
428
424
verifyCheckedAlways (node);
@@ -523,11 +519,6 @@ class Verifier : public ASTWalker {
523
519
verifyParsed (cast<typename ASTNodeBase<T>::BaseTy>(ASTNode));
524
520
}
525
521
526
- void verifyBound (Expr *E) {}
527
- void verifyBound (Stmt *S) {}
528
- void verifyBound (Pattern *P) {}
529
- void verifyBound (Decl *D) {}
530
-
531
522
// / @{
532
523
// / These verification functions are always run on type checked ASTs
533
524
// / (even if there were errors).
You can’t perform that action at this time.
0 commit comments