Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Side by Side Diff: lib/src/prism/components/prism-julia.js

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « lib/src/prism/components/prism-jsx.min.js ('k') | lib/src/prism/components/prism-julia.min.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Prism.languages.julia= { 1 Prism.languages.julia= {
2 'comment': { 2 'comment': {
3 » » pattern: /(^|[^\\])#.*?(\r?\n|$)/, 3 » » pattern: /(^|[^\\])#.*/,
4 lookbehind: true 4 lookbehind: true
5 }, 5 },
6 'string': /"""[\s\S]+?"""|'''[\s\S]+?'''|("|')(\\?.)*?\1/, 6 'string': /"""[\s\S]+?"""|'''[\s\S]+?'''|("|')(\\?.)*?\1/,
7 'keyword' : /\b(abstract|baremodule|begin|bitstype|break|catch|ccall|con st|continue|do|else|elseif|end|export|finally|for|function|global|if|immutable|i mport|importall|let|local|macro|module|print|println|quote|return|try|type|typea lias|using|while)\b/, 7 'keyword' : /\b(abstract|baremodule|begin|bitstype|break|catch|ccall|con st|continue|do|else|elseif|end|export|finally|for|function|global|if|immutable|i mport|importall|let|local|macro|module|print|println|quote|return|try|type|typea lias|using|while)\b/,
8 'boolean' : /\b(true|false)\b/, 8 'boolean' : /\b(true|false)\b/,
9 » 'number' : /\b-?(0[box])?(?:[\da-f]+\.?\d*|\.\d+)(?:e[+-]?\d+)?j?\b/i, 9 » 'number' : /\b-?(0[box])?(?:[\da-f]+\.?\d*|\.\d+)(?:[efp][+-]?\d+)?j?\b/ i,
10 » 'operator' : /[-+]{1,2}|=?<|=?>|!|={1,2}|&{1,2}|\|?\||\?|\*|\/|~|\^|%|\b (or|and|not)\b/, 10 » 'operator': /\+=?|-=?|\*=?|\/[\/=]?|\\=?|\^=?|%=?|÷=?|!=?=?|&=?|\|[=>]?| \$=?|<(?:<=?|[=:])?|>(?:=|>>?=?)?|==?=?|[~≠≤≥]/,
11 'punctuation' : /[{}[\];(),.:]/ 11 'punctuation' : /[{}[\];(),.:]/
12 }; 12 };
OLDNEW
« no previous file with comments | « lib/src/prism/components/prism-jsx.min.js ('k') | lib/src/prism/components/prism-julia.min.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698