| Index: src/compiler/ast-graph-builder.cc
|
| diff --git a/src/compiler/ast-graph-builder.cc b/src/compiler/ast-graph-builder.cc
|
| index 91ae5b2a461ef1f29146c7f94b44237ac7ad4cd1..4ace04370c49bc434eaa403e6776505ee45831ef 100644
|
| --- a/src/compiler/ast-graph-builder.cc
|
| +++ b/src/compiler/ast-graph-builder.cc
|
| @@ -416,6 +416,11 @@ void AstGraphBuilder::VisitFunctionDeclaration(FunctionDeclaration* decl) {
|
| }
|
|
|
|
|
| +void AstGraphBuilder::VisitClassDeclaration(ClassDeclaration* decl) {
|
| + UNREACHABLE();
|
| +}
|
| +
|
| +
|
| void AstGraphBuilder::VisitModuleDeclaration(ModuleDeclaration* decl) {
|
| UNREACHABLE();
|
| }
|
| @@ -812,6 +817,9 @@ void AstGraphBuilder::VisitFunctionLiteral(FunctionLiteral* expr) {
|
| }
|
|
|
|
|
| +void AstGraphBuilder::VisitClassLiteral(ClassLiteral* expr) { UNREACHABLE(); }
|
| +
|
| +
|
| void AstGraphBuilder::VisitNativeFunctionLiteral(NativeFunctionLiteral* expr) {
|
| UNREACHABLE();
|
| }
|
|
|