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

Unified Diff: packages/petitparser/lib/src/lisp/cons.dart

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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 | « packages/petitparser/lib/src/json/parser.dart ('k') | packages/petitparser/lib/src/lisp/environment.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/petitparser/lib/src/lisp/cons.dart
diff --git a/petitparser/lib/src/lisp/cons.dart b/packages/petitparser/lib/src/lisp/cons.dart
similarity index 82%
rename from petitparser/lib/src/lisp/cons.dart
rename to packages/petitparser/lib/src/lisp/cons.dart
index bb0463c8086c8e544b89bfb423e10c2ad539d6df..e9fcae7a867559260b735f8560f254ad0a910193 100644
--- a/petitparser/lib/src/lisp/cons.dart
+++ b/packages/petitparser/lib/src/lisp/cons.dart
@@ -1,17 +1,15 @@
-part of lisp;
+part of petitparser.lisp;
-/**
- * The basic data structure of LISP.
- */
+/// The basic data structure of LISP.
class Cons {
- /** The head of the cons. */
+ /// The head of the cons.
dynamic head;
- /** The tail of the cons. */
+ /// The tail of the cons.
dynamic tail;
- /** Constructs a cons. */
+ /// Constructs a cons.
Cons(this.head, this.tail);
@override
« no previous file with comments | « packages/petitparser/lib/src/json/parser.dart ('k') | packages/petitparser/lib/src/lisp/environment.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698