| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394 |
- /*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
- export var conf = {
- wordPattern: /(-?\d*\.\d\w*)|([^\`\~\!\@\$\^\&\*\(\)\=\+\[\{\]\}\\\|\;\:\'\"\,\.\<\>\/\s]+)/g,
- comments: {
- blockComment: ['{#', '#}']
- },
- brackets: [
- ['{#', '#}'],
- ['{%', '%}'],
- ['{{', '}}'],
- ['(', ')'],
- ['[', ']'],
- // HTML
- ['<!--', '-->'],
- ['<', '>']
- ],
- autoClosingPairs: [
- { open: '{# ', close: ' #}' },
- { open: '{% ', close: ' %}' },
- { open: '{{ ', close: ' }}' },
- { open: '[', close: ']' },
- { open: '(', close: ')' },
- { open: '"', close: '"' },
- { open: "'", close: "'" }
- ],
- surroundingPairs: [
- { open: '"', close: '"' },
- { open: "'", close: "'" },
- // HTML
- { open: '<', close: '>' }
- ]
- };
- export var language = {
- defaultToken: '',
- tokenPostfix: '',
- ignoreCase: true,
- keywords: [
- // (opening) tags
- 'apply',
- 'autoescape',
- 'block',
- 'deprecated',
- 'do',
- 'embed',
- 'extends',
- 'flush',
- 'for',
- 'from',
- 'if',
- 'import',
- 'include',
- 'macro',
- 'sandbox',
- 'set',
- 'use',
- 'verbatim',
- 'with',
- // closing tags
- 'endapply',
- 'endautoescape',
- 'endblock',
- 'endembed',
- 'endfor',
- 'endif',
- 'endmacro',
- 'endsandbox',
- 'endset',
- 'endwith',
- // literals
- 'true',
- 'false'
- ],
- tokenizer: {
- root: [
- // whitespace
- [/\s+/],
- // Twig Tag Delimiters
- [/{#/, 'comment.twig', '@commentState'],
- [/{%[-~]?/, 'delimiter.twig', '@blockState'],
- [/{{[-~]?/, 'delimiter.twig', '@variableState'],
- // HTML
- [/<!DOCTYPE/, 'metatag.html', '@doctype'],
- [/<!--/, 'comment.html', '@comment'],
- [
- /(<)((?:[\w\-]+:)?[\w\-]+)(\s*)(\/>)/,
- ['delimiter.html', 'tag.html', '', 'delimiter.html']
- ],
- [/(<)(script)/, ['delimiter.html', { token: 'tag.html', next: '@script' }]],
- [/(<)(style)/, ['delimiter.html', { token: 'tag.html', next: '@style' }]],
- [
- /(<)((?:[\w\-]+:)?[\w\-]+)/,
- ['delimiter.html', { token: 'tag.html', next: '@otherTag' }]
- ],
- [
- /(<\/)((?:[\w\-]+:)?[\w\-]+)/,
- ['delimiter.html', { token: 'tag.html', next: '@otherTag' }]
- ],
- [/</, 'delimiter.html'],
- [/[^<]+/] // text
- ],
- /**
- * Comment Tag Handling
- */
- commentState: [
- [/#}/, 'comment.twig', '@pop'],
- [/./, 'comment.twig']
- ],
- /**
- * Block Tag Handling
- */
- blockState: [
- [/[-~]?%}/, 'delimiter.twig', '@pop'],
- // whitespace
- [/\s+/],
- // verbatim
- // Unlike other blocks, verbatim ehas its own state
- // transition to ensure we mark its contents as strings.
- [
- /(verbatim)(\s*)([-~]?%})/,
- ['keyword.twig', '', { token: 'delimiter.twig', next: '@rawDataState' }]
- ],
- { include: 'expression' }
- ],
- rawDataState: [
- // endverbatim
- [
- /({%[-~]?)(\s*)(endverbatim)(\s*)([-~]?%})/,
- [
- 'delimiter.twig',
- '',
- 'keyword.twig',
- '',
- { token: 'delimiter.twig', next: '@popall' }
- ]
- ],
- [/./, 'string.twig']
- ],
- /**
- * Variable Tag Handling
- */
- variableState: [[/[-~]?}}/, 'delimiter.twig', '@pop'], { include: 'expression' }],
- stringState: [
- // closing double quoted string
- [/"/, 'string.twig', '@pop'],
- // interpolation start
- [/#{\s*/, 'string.twig', '@interpolationState'],
- // string part
- [/[^#"\\]*(?:(?:\\.|#(?!\{))[^#"\\]*)*/, 'string.twig']
- ],
- interpolationState: [
- // interpolation end
- [/}/, 'string.twig', '@pop'],
- { include: 'expression' }
- ],
- /**
- * Expression Handling
- */
- expression: [
- // whitespace
- [/\s+/],
- // operators - math
- [/\+|-|\/{1,2}|%|\*{1,2}/, 'operators.twig'],
- // operators - logic
- [/(and|or|not|b-and|b-xor|b-or)(\s+)/, ['operators.twig', '']],
- // operators - comparison (symbols)
- [/==|!=|<|>|>=|<=/, 'operators.twig'],
- // operators - comparison (words)
- [/(starts with|ends with|matches)(\s+)/, ['operators.twig', '']],
- // operators - containment
- [/(in)(\s+)/, ['operators.twig', '']],
- // operators - test
- [/(is)(\s+)/, ['operators.twig', '']],
- // operators - misc
- [/\||~|:|\.{1,2}|\?{1,2}/, 'operators.twig'],
- // names
- [
- /[^\W\d][\w]*/,
- {
- cases: {
- '@keywords': 'keyword.twig',
- '@default': 'variable.twig'
- }
- }
- ],
- // numbers
- [/\d+(\.\d+)?/, 'number.twig'],
- // punctuation
- [/\(|\)|\[|\]|{|}|,/, 'delimiter.twig'],
- // strings
- [/"([^#"\\]*(?:\\.[^#"\\]*)*)"|\'([^\'\\]*(?:\\.[^\'\\]*)*)\'/, 'string.twig'],
- // opening double quoted string
- [/"/, 'string.twig', '@stringState'],
- // misc syntactic constructs
- // These are not operators per se, but for the purposes of lexical analysis we
- // can treat them as such.
- // arrow functions
- [/=>/, 'operators.twig'],
- // assignment
- [/=/, 'operators.twig']
- ],
- /**
- * HTML
- */
- doctype: [
- [/[^>]+/, 'metatag.content.html'],
- [/>/, 'metatag.html', '@pop']
- ],
- comment: [
- [/-->/, 'comment.html', '@pop'],
- [/[^-]+/, 'comment.content.html'],
- [/./, 'comment.content.html']
- ],
- otherTag: [
- [/\/?>/, 'delimiter.html', '@pop'],
- [/"([^"]*)"/, 'attribute.value.html'],
- [/'([^']*)'/, 'attribute.value.html'],
- [/[\w\-]+/, 'attribute.name.html'],
- [/=/, 'delimiter.html'],
- [/[ \t\r\n]+/] // whitespace
- ],
- // -- BEGIN <script> tags handling
- // After <script
- script: [
- [/type/, 'attribute.name.html', '@scriptAfterType'],
- [/"([^"]*)"/, 'attribute.value.html'],
- [/'([^']*)'/, 'attribute.value.html'],
- [/[\w\-]+/, 'attribute.name.html'],
- [/=/, 'delimiter.html'],
- [
- />/,
- {
- token: 'delimiter.html',
- next: '@scriptEmbedded',
- nextEmbedded: 'text/javascript'
- }
- ],
- [/[ \t\r\n]+/],
- [
- /(<\/)(script\s*)(>)/,
- ['delimiter.html', 'tag.html', { token: 'delimiter.html', next: '@pop' }]
- ]
- ],
- // After <script ... type
- scriptAfterType: [
- [/=/, 'delimiter.html', '@scriptAfterTypeEquals'],
- [
- />/,
- {
- token: 'delimiter.html',
- next: '@scriptEmbedded',
- nextEmbedded: 'text/javascript'
- }
- ],
- [/[ \t\r\n]+/],
- [/<\/script\s*>/, { token: '@rematch', next: '@pop' }]
- ],
- // After <script ... type =
- scriptAfterTypeEquals: [
- [
- /"([^"]*)"/,
- {
- token: 'attribute.value.html',
- switchTo: '@scriptWithCustomType.$1'
- }
- ],
- [
- /'([^']*)'/,
- {
- token: 'attribute.value.html',
- switchTo: '@scriptWithCustomType.$1'
- }
- ],
- [
- />/,
- {
- token: 'delimiter.html',
- next: '@scriptEmbedded',
- nextEmbedded: 'text/javascript'
- }
- ],
- [/[ \t\r\n]+/],
- [/<\/script\s*>/, { token: '@rematch', next: '@pop' }]
- ],
- // After <script ... type = $S2
- scriptWithCustomType: [
- [
- />/,
- {
- token: 'delimiter.html',
- next: '@scriptEmbedded.$S2',
- nextEmbedded: '$S2'
- }
- ],
- [/"([^"]*)"/, 'attribute.value.html'],
- [/'([^']*)'/, 'attribute.value.html'],
- [/[\w\-]+/, 'attribute.name.html'],
- [/=/, 'delimiter.html'],
- [/[ \t\r\n]+/],
- [/<\/script\s*>/, { token: '@rematch', next: '@pop' }]
- ],
- scriptEmbedded: [
- [/<\/script/, { token: '@rematch', next: '@pop', nextEmbedded: '@pop' }],
- [/[^<]+/, '']
- ],
- // -- END <script> tags handling
- // -- BEGIN <style> tags handling
- // After <style
- style: [
- [/type/, 'attribute.name.html', '@styleAfterType'],
- [/"([^"]*)"/, 'attribute.value.html'],
- [/'([^']*)'/, 'attribute.value.html'],
- [/[\w\-]+/, 'attribute.name.html'],
- [/=/, 'delimiter.html'],
- [
- />/,
- {
- token: 'delimiter.html',
- next: '@styleEmbedded',
- nextEmbedded: 'text/css'
- }
- ],
- [/[ \t\r\n]+/],
- [
- /(<\/)(style\s*)(>)/,
- ['delimiter.html', 'tag.html', { token: 'delimiter.html', next: '@pop' }]
- ]
- ],
- // After <style ... type
- styleAfterType: [
- [/=/, 'delimiter.html', '@styleAfterTypeEquals'],
- [
- />/,
- {
- token: 'delimiter.html',
- next: '@styleEmbedded',
- nextEmbedded: 'text/css'
- }
- ],
- [/[ \t\r\n]+/],
- [/<\/style\s*>/, { token: '@rematch', next: '@pop' }]
- ],
- // After <style ... type =
- styleAfterTypeEquals: [
- [
- /"([^"]*)"/,
- {
- token: 'attribute.value.html',
- switchTo: '@styleWithCustomType.$1'
- }
- ],
- [
- /'([^']*)'/,
- {
- token: 'attribute.value.html',
- switchTo: '@styleWithCustomType.$1'
- }
- ],
- [
- />/,
- {
- token: 'delimiter.html',
- next: '@styleEmbedded',
- nextEmbedded: 'text/css'
- }
- ],
- [/[ \t\r\n]+/],
- [/<\/style\s*>/, { token: '@rematch', next: '@pop' }]
- ],
- // After <style ... type = $S2
- styleWithCustomType: [
- [
- />/,
- {
- token: 'delimiter.html',
- next: '@styleEmbedded.$S2',
- nextEmbedded: '$S2'
- }
- ],
- [/"([^"]*)"/, 'attribute.value.html'],
- [/'([^']*)'/, 'attribute.value.html'],
- [/[\w\-]+/, 'attribute.name.html'],
- [/=/, 'delimiter.html'],
- [/[ \t\r\n]+/],
- [/<\/style\s*>/, { token: '@rematch', next: '@pop' }]
- ],
- styleEmbedded: [
- [/<\/style/, { token: '@rematch', next: '@pop', nextEmbedded: '@pop' }],
- [/[^<]+/, '']
- ]
- }
- };
|