Skip to content

Commit d942970

Browse files
Default enable identifier escaping with backticks (#1295)
1 parent 7114ed2 commit d942970

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

parser/parser.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ type Parser struct {
4242
func NewParser(opts ...Option) (*Parser, error) {
4343
p := &Parser{}
4444
p.enableHiddenAccumulatorName = true
45+
p.enableIdentEscapeSyntax = true
4546
for _, opt := range opts {
4647
if err := opt(&p.options); err != nil {
4748
return nil, err

0 commit comments

Comments
 (0)