| 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 '())
|
|
|