[js_ast] language version 2.16

Change-Id: I421fe264e7318bf774d25cce463e858e9323872a
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/240145
Reviewed-by: Nicholas Shahan <nshahan@google.com>
Commit-Queue: Stephen Adams <sra@google.com>
This commit is contained in:
Stephen Adams 2022-04-05 01:38:03 +00:00 committed by Commit Bot
parent 1af37bd92a
commit 9ac50f35fe
10 changed files with 2 additions and 18 deletions

View file

@ -386,7 +386,7 @@
"name": "js_ast",
"rootUri": "../pkg/js_ast",
"packageUri": "lib/",
"languageVersion": "2.10"
"languageVersion": "2.16"
},
{
"name": "js_runtime",

View file

@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart = 2.10
library js_ast;
export 'src/builder.dart';

View file

@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart=2.15
/// Utilities for building JS ASTs at runtime. Contains a builder class and a
/// parser that parses part of the language.
library js_ast.builder;

View file

@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart=2.15
library js_ast.equivalence_visitor;
import 'nodes.dart';

View file

@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart=2.15
library js_ast.nodes;
import 'precedence.dart';

View file

@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart=2.15
library precedence;
const EXPRESSION = 0;

View file

@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart=2.15
library js_ast.printer;
import 'characters.dart' as char_codes;

View file

@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart=2.15
// Utilities for converting between JavaScript source-code Strings and the
// String value they represent.

View file

@ -2,8 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart=2.15
library js_ast.template;
import 'nodes.dart';

View file

@ -3,7 +3,7 @@ name: js_ast
publish_to: none
environment:
sdk: '>=2.10.0 <3.0.0'
sdk: '>=2.16.0 <3.0.0'
dev_dependencies:
expect: