com.vaadin.polymer.public.bower_components.prism.components.prism-graphql.js Maven / Gradle / Ivy
The newest version!
Prism.languages.graphql = {
'comment': /#.*/,
'string': {
pattern: /"(?:\\.|[^\\"])*"/,
greedy: true
},
'number': /(?:\B-|\b)\d+(?:\.\d+)?(?:[eE][+-]?\d+)?\b/,
'boolean': /\b(?:true|false)\b/,
'variable': /\$[a-z_]\w*/i,
'directive': {
pattern: /@[a-z_]\w*/i,
alias: 'function'
},
'attr-name': /[a-z_]\w*(?=\s*:)/i,
'keyword': [
{
pattern: /(fragment\s+(?!on)[a-z_]\w*\s+|\.\.\.\s*)on\b/,
lookbehind: true
},
/\b(?:query|fragment|mutation)\b/
],
'operator': /!|=|\.{3}/,
'punctuation': /[!(){}\[\]:=,]/
};
© 2015 - 2024 Weber Informatics LLC | Privacy Policy