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

Unified Diff: pkg/front_end/test/fasta/operators.dart.outline.expect

Issue 2680323002: Handle operators correctly. (Closed)
Patch Set: Rename Operator.index to Operator.indexGet. Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/front_end/test/fasta/operators.dart.direct.expect ('k') | pkg/front_end/test/fasta/outline.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/test/fasta/operators.dart.outline.expect
diff --git a/pkg/front_end/test/fasta/operators.dart.outline.expect b/pkg/front_end/test/fasta/operators.dart.outline.expect
new file mode 100644
index 0000000000000000000000000000000000000000..0269d346705df02c53d21573c8507eb84c2bb61e
--- /dev/null
+++ b/pkg/front_end/test/fasta/operators.dart.outline.expect
@@ -0,0 +1,50 @@
+library;
+import self as self;
+import "dart:core" as core;
+
+class Operators extends core::Object {
+ constructor •() → void
+ ;
+ operator +(dynamic other) → dynamic
+ ;
+ operator &(dynamic other) → dynamic
+ ;
+ operator ~() → dynamic
+ ;
+ operator |(dynamic other) → dynamic
+ ;
+ operator ^(dynamic other) → dynamic
+ ;
+ operator /(dynamic other) → dynamic
+ ;
+ operator ==(dynamic other) → dynamic
+ ;
+ operator >(dynamic other) → dynamic
+ ;
+ operator >=(dynamic other) → dynamic
+ ;
+ operator [](dynamic index) → dynamic
+ ;
+ operator []=(dynamic index, dynamic value) → void
+ ;
+ operator <<(dynamic other) → dynamic
+ ;
+ operator <(dynamic other) → dynamic
+ ;
+ operator <=(dynamic other) → dynamic
+ ;
+ operator *(dynamic other) → dynamic
+ ;
+ operator %(dynamic other) → dynamic
+ ;
+ operator >>(dynamic other) → dynamic
+ ;
+ operator -(dynamic other) → dynamic
+ ;
+ operator ~/(dynamic other) → dynamic
+ ;
+ operator unary-() → dynamic
+ ;
+}
+static method main(dynamic arguments) → dynamic
+ ;
« no previous file with comments | « pkg/front_end/test/fasta/operators.dart.direct.expect ('k') | pkg/front_end/test/fasta/outline.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698