Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(106)

Side by Side Diff: pkg/front_end/lib/src/fasta/names.dart

Issue 2777883002: Remove Fasta's copy of accessors.dart. (Closed)
Patch Set: Remove type checking of Rasta, not strong mode clean. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library front_end.src.fasta.names; 5 library front_end.src.fasta.names;
6 6
7 import 'package:kernel/ast.dart' show Name; 7 import 'package:kernel/ast.dart' show Name;
8 8
9 export 'package:kernel/frontend/accessors.dart' show indexGetName, indexSetName;
10
9 final Name callName = new Name("call"); 11 final Name callName = new Name("call");
10 12
11 final Name plusName = new Name("+"); 13 final Name plusName = new Name("+");
12 14
13 final Name minusName = new Name("-"); 15 final Name minusName = new Name("-");
14 16
15 final Name multiplyName = new Name("*"); 17 final Name multiplyName = new Name("*");
16 18
17 final Name divisionName = new Name("/"); 19 final Name divisionName = new Name("/");
18 20
19 final Name percentName = new Name("%"); 21 final Name percentName = new Name("%");
20 22
21 final Name ampersandName = new Name("&"); 23 final Name ampersandName = new Name("&");
22 24
23 final Name leftShiftName = new Name("<<"); 25 final Name leftShiftName = new Name("<<");
24 26
25 final Name rightShiftName = new Name(">>"); 27 final Name rightShiftName = new Name(">>");
26 28
27 final Name caretName = new Name("^"); 29 final Name caretName = new Name("^");
28 30
29 final Name barName = new Name("|"); 31 final Name barName = new Name("|");
30 32
31 final Name mustacheName = new Name("~/"); 33 final Name mustacheName = new Name("~/");
32
33 final Name indexGetName = new Name("[]");
34
35 final Name indexSetName = new Name("[]=");
OLDNEW
« no previous file with comments | « pkg/front_end/lib/src/fasta/kernel/frontend_accessors.dart ('k') | pkg/front_end/test/fasta/testing.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698