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

Unified Diff: lib/html/templates/html/dart2js/html_dart2js.darttemplate

Issue 10991003: Change raw string indicator from @ to r. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« no previous file with comments | « lib/html/src/dart2js_Conversions.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/templates/html/dart2js/html_dart2js.darttemplate
diff --git a/lib/html/templates/html/dart2js/html_dart2js.darttemplate b/lib/html/templates/html/dart2js/html_dart2js.darttemplate
index 1274c7ecdc404047d278b41862a99779a0bd4474..2a0c6d09755a0b7b0eefce697437b6b63bc6e465 100644
--- a/lib/html/templates/html/dart2js/html_dart2js.darttemplate
+++ b/lib/html/templates/html/dart2js/html_dart2js.darttemplate
@@ -52,7 +52,7 @@ class _HTMLElementImpl extends _ElementImpl native "*HTMLElement" {
}
// Support for Send/ReceivePortSync.
-int _getNewIsolateId() native @'''
+int _getNewIsolateId() native r'''
if (!window.$dart$isolate$counter) {
window.$dart$isolate$counter = 1;
}
@@ -61,7 +61,7 @@ int _getNewIsolateId() native @'''
// Fast path to invoke JS send port.
_callPortSync(int id, message) {
- return JS('var', @'ReceivePortSync.dispatchCall(#, #)', id, message);
+ return JS('var', r'ReceivePortSync.dispatchCall(#, #)', id, message);
}
// TODO(vsm): Plumb this properly.
« no previous file with comments | « lib/html/src/dart2js_Conversions.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698