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

Unified Diff: frog/css/css.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: 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
« no previous file with comments | « no previous file | frog/css/cssparserexception.dart » ('j') | frog/css/cssparserexception.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/css/css.dart
diff --git a/frog/css/css.dart b/frog/css/css.dart
new file mode 100644
index 0000000000000000000000000000000000000000..2bc49984911500096d71eee8a9e06eaff35e1d7b
--- /dev/null
+++ b/frog/css/css.dart
@@ -0,0 +1,29 @@
+// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+#library('css');
+
+#import('../file_system.dart');
+
+#source('../reader.dart');
+#source('../token.dart');
+#source('../tokenizer.dart');
+#source('../tree.dart');
+#source('../source.dart');
+#source('../world.dart');
+#source('tokenkind.dart');
+#source('tokenizer_css.dart');
+#source('tree_css.dart');
+#source('cssparserexception.dart');
+#source('cssselectorexception.dart');
+#source('cssworld.dart');
+#source('parser_css.dart');
+#source('csstemplate.dart');
+
+// TODO(terry): Place holders until CSS supports this types if ever.
+class Library {}
+class Named {}
+class Member {}
+class MemberSet {}
+class WorldGenerator {}
« no previous file with comments | « no previous file | frog/css/cssparserexception.dart » ('j') | frog/css/cssparserexception.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698