goldstein 3.1.0 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ChangeLog +5 -0
- package/README.md +3 -3
- package/build/parser.cjs +5492 -0
- package/package.json +9 -4
- package/packages/goldstein/index.js +4 -34
- package/packages/goldstein/parser.js +33 -0
package/ChangeLog
CHANGED
package/README.md
CHANGED
|
@@ -36,10 +36,10 @@ export fn hello() {
|
|
|
36
36
|
$ gs 1.gs
|
|
37
37
|
$ cat 1.js
|
|
38
38
|
function hello() {
|
|
39
|
-
|
|
39
|
+
return "world";
|
|
40
40
|
}
|
|
41
41
|
export {
|
|
42
|
-
|
|
42
|
+
hello,
|
|
43
43
|
};
|
|
44
44
|
```
|
|
45
45
|
|
|
@@ -144,7 +144,7 @@ function hello() {
|
|
|
144
144
|
`;
|
|
145
145
|
```
|
|
146
146
|
|
|
147
|
-
You can declare variables with
|
|
147
|
+
You can declare variables with [`@putout/operator-declare`](https://github.com/coderaiser/putout/tree/master/packages/operator-declare).
|
|
148
148
|
|
|
149
149
|
### `parse(source)`
|
|
150
150
|
|