Files
liquidjs/src/parser/token.ts
T

17 lines
289 B
TypeScript

export default class Token {
type: string
line: number
col: number
raw: string
input: string
file: string
value: string
constructor (raw, col, input, file, line) {
this.col = col
this.line = line
this.raw = raw
this.input = input
this.file = file
}
}