mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
17 lines
289 B
TypeScript
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
|
|
}
|
|
}
|