| Index: polymer_1.0.4/bower_components/prism/components/prism-applescript.js
|
| diff --git a/polymer_1.0.4/bower_components/prism/components/prism-applescript.js b/polymer_1.0.4/bower_components/prism/components/prism-applescript.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5d74020431a06796c2daff883c2433f9d7c8dcb6
|
| --- /dev/null
|
| +++ b/polymer_1.0.4/bower_components/prism/components/prism-applescript.js
|
| @@ -0,0 +1,23 @@
|
| +/* TODO
|
| + Add support for nested block comments...
|
| +*/
|
| +
|
| +Prism.languages.applescript = {
|
| + 'comment': [
|
| + /\(\*[\w\W]*?\*\)/,
|
| + /--.+/,
|
| + /#.+/
|
| + ],
|
| + 'string': /"(?:\\?.)*?"/,
|
| + 'operator': [
|
| + /[&=≠≤≥*+\-\/÷^]|[<>]=?/,
|
| + /\b(?:(?:start|begin|end)s? with|(?:(?:does not|doesn't) contain|contains?)|(?:is|isn't|is not) (?:in|contained by)|(?:(?:is|isn't|is not) )?(?:greater|less) than(?: or equal)?(?: to)?|(?:(?:does not|doesn't) come|comes) (?:before|after)|(?:is|isn't|is not) equal(?: to)?|(?:(?:does not|doesn't) equal|equals|equal to|isn't|is not)|(?:a )?(?:ref(?: to)?|reference to)|(?:and|or|div|mod|as|not))\b/
|
| + ],
|
| + 'keyword': /\b(?:about|above|after|against|and|apart from|around|as|aside from|at|back|before|beginning|behind|below|beneath|beside|between|but|by|considering|contain|contains|continue|copy|div|does|eighth|else|end|equal|equals|error|every|exit|false|fifth|first|for|fourth|from|front|get|given|global|if|ignoring|in|instead of|into|is|it|its|last|local|me|middle|mod|my|ninth|not|of|on|onto|or|out of|over|prop|property|put|ref|reference|repeat|return|returning|script|second|set|seventh|since|sixth|some|tell|tenth|that|the|then|third|through|thru|timeout|times|to|transaction|true|try|until|where|while|whose|with|without)\b/,
|
| + 'class': {
|
| + pattern: /\b(?:alias|application|boolean|class|constant|date|file|integer|list|number|POSIX file|real|record|reference|RGB color|script|text|centimetres|centimeters|feet|inches|kilometres|kilometers|metres|meters|miles|yards|square feet|square kilometres|square kilometers|square metres|square meters|square miles|square yards|cubic centimetres|cubic centimeters|cubic feet|cubic inches|cubic metres|cubic meters|cubic yards|gallons|litres|liters|quarts|grams|kilograms|ounces|pounds|degrees Celsius|degrees Fahrenheit|degrees Kelvin)\b/,
|
| + alias: 'builtin'
|
| + },
|
| + 'number': /\b-?\d*\.?\d+([Ee]-?\d+)?\b/,
|
| + 'punctuation': /[{}():,¬«»《》]/
|
| +};
|
|
|