| Index: sdk/lib/_internal/compiler/implementation/dart_backend/backend_ast_to_frontend_ast.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/dart_backend/backend_ast_to_frontend_ast.dart b/sdk/lib/_internal/compiler/implementation/dart_backend/backend_ast_to_frontend_ast.dart
|
| index 320d3a0135f1d64185cff808dbfb36e764cbfe73..eca14201fc6fd2acd481b0e2e78d8e952ea31e67 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/dart_backend/backend_ast_to_frontend_ast.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/dart_backend/backend_ast_to_frontend_ast.dart
|
| @@ -23,11 +23,7 @@ tree.FunctionExpression emit(dart2js.TreeElementMapping treeElements,
|
| /// If true, the unparser will insert a coment in front of every function
|
| /// it emits. This helps indicate which functions were translated by the new
|
| /// backend.
|
| -const bool INSERT_NEW_BACKEND_COMMENT = true;
|
| -
|
| -/// The comment inserted in front of every function body.
|
| -const String NEW_BACKEND_COMMENT =
|
| - INSERT_NEW_BACKEND_COMMENT ? '/* new backend */ ' : '';
|
| +bool INSERT_NEW_BACKEND_COMMENT = false;
|
|
|
| /// Converts backend ASTs to frontend ASTs.
|
| class TreePrinter {
|
| @@ -600,7 +596,7 @@ class TreePrinter {
|
|
|
| /// A comment token to be inserted when [INSERT_NEW_BACKEND_COMMENT] is true.
|
| final SymbolToken newBackendComment = new SymbolToken(
|
| - const PrecedenceInfo(NEW_BACKEND_COMMENT, 0, OPEN_CURLY_BRACKET_TOKEN),
|
| + const PrecedenceInfo('/* new backend */ ', 0, OPEN_CURLY_BRACKET_TOKEN),
|
| -1);
|
|
|
| tree.Node makeFunctionBody(Statement stmt) {
|
|
|