1
0
Fork 0
mirror of https://github.com/pnx/tree-sitter-dotenv synced 2026-06-16 01:54:56 +02:00

value token: "=" can be part of the value.

This commit is contained in:
Henrik Hautakoski 2024-12-11 16:53:04 +01:00
parent 0512ebe640
commit e7a97e884a

View file

@ -68,6 +68,6 @@ module.exports = grammar({
boolean: _ => token(choice('true', 'false')),
value: _ => token(prec(-1, /[^\#\=\s]+/)),
value: _ => token(prec(-1, /[^\#\s]+/)),
},
});