Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklx committed Aug 9, 2023
1 parent 2625bb3 commit 13262a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/parsers/gjs-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ function tokenize(template, doc, startOffset) {
const t = {
type: 'word',
value: current,
range: range,
range,
start: range[0],
end: range[1],
loc: {
Expand All @@ -182,7 +182,7 @@ function tokenize(template, doc, startOffset) {
tokens.push({
type: 'punctuator',
value: c,
range: range,
range,
start: range[0],
end: range[1],
loc: {
Expand Down

0 comments on commit 13262a6

Please sign in to comment.