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

Unified Diff: polymer_1.0.4/bower_components/prism/components/prism-nasm.js

Issue 1205703007: Add polymer 1.0 to npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Renamed folder to 1.0.4 Created 5 years, 6 months 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 side-by-side diff with in-line comments
Download patch
Index: polymer_1.0.4/bower_components/prism/components/prism-nasm.js
diff --git a/polymer_1.0.4/bower_components/prism/components/prism-nasm.js b/polymer_1.0.4/bower_components/prism/components/prism-nasm.js
new file mode 100644
index 0000000000000000000000000000000000000000..b10725451f82d986317ef8227ec20e22c69b8508
--- /dev/null
+++ b/polymer_1.0.4/bower_components/prism/components/prism-nasm.js
@@ -0,0 +1,20 @@
+Prism.languages.nasm = {
+ 'comment': /;.*$/m,
+ 'string': /("|'|`)(\\?.)*?\1/m,
+ 'label': {
+ pattern: /^\s*[A-Za-z\._\?\$][\w\.\?\$@~#]*:/m,
+ alias: 'function'
+ },
+ 'keyword': [
+ /\[?BITS (16|32|64)\]?/m,
+ /^\s*section\s*[a-zA-Z\.]+:?/im,
+ /(?:extern|global)[^;]*/im,
+ /(?:CPU|FLOAT|DEFAULT).*$/m
+ ],
+ 'register': {
+ pattern: /\b(?:st\d|[xyz]mm\d\d?|[cdt]r\d|r\d\d?[bwd]?|[er]?[abcd]x|[abcd][hl]|[er]?(bp|sp|si|di)|[cdefgs]s)\b/i,
+ alias: 'variable'
+ },
+ 'number': /(\b|-|(?=\$))(0[hx][\da-f]*\.?[\da-f]+(p[+-]?\d+)?|\d[\da-f]+[hx]|\$\d[\da-f]*|0[oq][0-7]+|[0-7]+[oq]|0[by][01]+|[01]+[by]|0[dt]\d+|\d*\.?\d+(\.?e[+-]?\d+)?[dt]?)\b/i,
+ 'operator': /[\[\]\*+\-\/%<>=&|\$!]/m
+};

Powered by Google App Engine
This is Rietveld 408576698