mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 08:20:31 +00:00
[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:
parent
1af37bd92a
commit
9ac50f35fe
10 changed files with 2 additions and 18 deletions
|
@ -386,7 +386,7 @@
|
|||
"name": "js_ast",
|
||||
"rootUri": "../pkg/js_ast",
|
||||
"packageUri": "lib/",
|
||||
"languageVersion": "2.10"
|
||||
"languageVersion": "2.16"
|
||||
},
|
||||
{
|
||||
"name": "js_runtime",
|
||||
|
|
|
@ -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';
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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';
|
||||
|
|
|
@ -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';
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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';
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue