Skip to content

Commit

Permalink
fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
liulinboyi committed Jan 12, 2021
1 parent 783506d commit 38f430d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lexer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export enum Tokens {
TOKEN_IGNORED, // Ignored
}

const { TOKEN_EOF, // end-of-file
const { TOKEN_EOF, // end-of-file
TOKEN_VAR_PREFIX, // $
TOKEN_LEFT_PAREN, // (
TOKEN_RIGHT_PAREN, // )
Expand Down
2 changes: 1 addition & 1 deletion src/lexer1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export enum Tokens {
TOKEN_IGNORED, // Ignored
}

const { TOKEN_EOF, // end-of-file
const { TOKEN_EOF, // end-of-file
TOKEN_VAR_PREFIX, // $
TOKEN_LEFT_PAREN, // (
TOKEN_RIGHT_PAREN, // )
Expand Down
2 changes: 1 addition & 1 deletion src/parser.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Lexer, NewLexer, tokenNameMap, Tokens } from "./lexer1"
import { Variable } from './definition'

const { TOKEN_EOF, // end-of-file
const { TOKEN_EOF, // end-of-file
TOKEN_VAR_PREFIX, // $
TOKEN_LEFT_PAREN, // (
TOKEN_RIGHT_PAREN, // )
Expand Down

0 comments on commit 38f430d

Please sign in to comment.