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

Unified Diff: packages/petitparser/lib/src/lisp/standard.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
Index: packages/petitparser/lib/src/lisp/standard.dart
diff --git a/petitparser/lib/src/lisp/standard.dart b/packages/petitparser/lib/src/lisp/standard.dart
similarity index 86%
rename from petitparser/lib/src/lisp/standard.dart
rename to packages/petitparser/lib/src/lisp/standard.dart
index 7286c7991b7331f5ea70c14513fe03e5f83b66b9..8044d6278f6c8f85a1ea1fca13ab8c9af2158e02 100644
--- a/petitparser/lib/src/lisp/standard.dart
+++ b/packages/petitparser/lib/src/lisp/standard.dart
@@ -1,17 +1,15 @@
-part of lisp;
+part of petitparser.lisp;
-/**
- * The standard library.
- */
+/// The standard library.
class Standard {
- /** Imports the standard library into the [environment]. */
+ /// Imports the standard library into the [environment].
static Environment import(Environment environment) {
evalString(lispParser, environment, _standardLibrary);
return environment;
}
- /** A simple standard library, should be moved to external file. */
+ /// A simple standard library, should be moved to external file.
static String _standardLibrary = """
; null functions
(define null '())
« no previous file with comments | « packages/petitparser/lib/src/lisp/parser.dart ('k') | packages/petitparser/lib/src/petitparser/actions.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698