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

Unified Diff: tests/compiler/dart2js/js_throw_behavior_test.dart

Issue 1075283002: Add unary arithmetic (+#, -#) to ThrowBehaviorVisitor (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/compiler/lib/src/native/js.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/js_throw_behavior_test.dart
diff --git a/tests/compiler/dart2js/js_throw_behavior_test.dart b/tests/compiler/dart2js/js_throw_behavior_test.dart
index d1325821d314e61014b71c70c8cad3596ea4c4d0..45d27908d3b106eda11581d6f748e1a71efabe7e 100644
--- a/tests/compiler/dart2js/js_throw_behavior_test.dart
+++ b/tests/compiler/dart2js/js_throw_behavior_test.dart
@@ -28,6 +28,10 @@ void main() {
test('!!#', NEVER);
test('~#', NEVER);
test('~~#', NEVER);
+ test('-#', NEVER);
+ test('+#', NEVER);
+ test('-(-#)', NEVER);
+ test('+#', NEVER);
test('# * #', NEVER);
test('# / #', NEVER);
« no previous file with comments | « pkg/compiler/lib/src/native/js.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698