DELIMITEDIDENTIFIER

A backtick-delimited identifier. Allows any character sequence — including reserved words, spaces, and special characters — to serve as an identifier. Escape sequences are supported inside the backticks.

Examples

Reserved word used as identifier

`define`

Identifier with spaces

`My Measure Name`

Identifier with special characters

`rate-per-1000`
Railroad Diagram
100%
` ESC any character `

scroll to zoom · drag to pan · click green rules or blue tokens to navigate

EBNF

DELIMITEDIDENTIFIER
  : '`' (ESC | .)*? '`'
  ;

Used In