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

Unified Diff: tests/compiler/dart2js_native/native_named_constructors2_frog_test.dart

Issue 10920066: issue 4817 fixed. Implemented raw strings with 'r' instead of '@' for dart2js (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased. Marked raw_string_test as pass for dart2js-ff and dart2dart Created 8 years, 3 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
Index: tests/compiler/dart2js_native/native_named_constructors2_frog_test.dart
diff --git a/tests/compiler/dart2js_native/native_named_constructors2_frog_test.dart b/tests/compiler/dart2js_native/native_named_constructors2_frog_test.dart
index 685949323eb5a56a39e3b17940a6edac57634161..bd09643a2eb59f6308f6d6a0b3fd66916c3f44cf 100644
--- a/tests/compiler/dart2js_native/native_named_constructors2_frog_test.dart
+++ b/tests/compiler/dart2js_native/native_named_constructors2_frog_test.dart
@@ -11,7 +11,7 @@ class A native "*A" {
factory A.fromString(String s) => _construct(s.length);
- factory A.nativeConstructor(int a, int b) native @'return makeA(a+b);';
+ factory A.nativeConstructor(int a, int b) native r'return makeA(a+b);';
static A _construct(v) { return makeA(v); }

Powered by Google App Engine
This is Rietveld 408576698