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

Unified Diff: frog/leg/ssa/builder.dart

Issue 9190038: Handle escapes in string literals. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Removed validation from scanner Created 8 years, 11 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 | « frog/leg/scanner/vm_scanner_bench.dart ('k') | frog/leg/ssa/codegen.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/leg/ssa/builder.dart
diff --git a/frog/leg/ssa/builder.dart b/frog/leg/ssa/builder.dart
index 00aef32f06ef5df1b4a4233b4b271c53dd8fab7a..ebd2314f6e8619ea01e8249752d96b419dee7d7d 100644
--- a/frog/leg/ssa/builder.dart
+++ b/frog/leg/ssa/builder.dart
@@ -1151,9 +1151,6 @@ class SsaBuilder implements Visitor {
}
void visitLiteralString(LiteralString node) {
- if (node.value.stringValue[0] == '@') {
- compiler.unimplemented("SsaBuilder: raw strings", node: node);
- }
push(new HLiteral(new QuotedString.explicit(node.value), HType.STRING));
}
« no previous file with comments | « frog/leg/scanner/vm_scanner_bench.dart ('k') | frog/leg/ssa/codegen.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698