Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
xieyuheng committed Jul 14, 2023
1 parent 52e3a88 commit 09e8ea0
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 47 deletions.
104 changes: 62 additions & 42 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@
},
"devDependencies": {
"@types/commonmark": "^0.27.6",
"@types/node": "^20.2.6",
"@types/node": "^20.4.2",
"@xieyuheng/test-runner": "^0.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"typescript": "^5.1.3"
"prettier": "^3.0.0",
"prettier-plugin-organize-imports": "^3.2.3",
"typescript": "^5.1.6"
},
"license": "GPL-3.0-or-later"
}
6 changes: 5 additions & 1 deletion src/lang/env/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ export abstract class Env {
}

class ExtendEnv extends Env {
constructor(public name: string, public value: Value, public rest: Env) {
constructor(
public name: string,
public value: Value,
public rest: Env,
) {
super()
}

Expand Down

0 comments on commit 09e8ea0

Please sign in to comment.