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 {} |