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

Unified Diff: frog/source.dart

Issue 8498020: Beginning of CSS parser using frog parsering infrastructure. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Incorporated Jim's CR Created 9 years, 1 month 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: frog/source.dart
diff --git a/frog/source.dart b/frog/source.dart
index 1ff314485322c8c6ff8fce4253d504e9c1d1d7ad..ab62a2fe3a43592c14adba3e54dc23484e70d16c 100644
--- a/frog/source.dart
+++ b/frog/source.dart
@@ -7,6 +7,10 @@
* Represents a file of source code.
*/
class SourceFile implements Comparable {
+ // TODO(terry): This filename for in memory buffer. May need to rework if
+ // filename is used for more than informational.
+ static String IN_MEMORY_FILE = '<buffer>';
+
/** The name of the file. */
final String filename;

Powered by Google App Engine
This is Rietveld 408576698