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

Unified Diff: bower_components/google-code-prettify/src/lang-pascal.js

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 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: bower_components/google-code-prettify/src/lang-pascal.js
diff --git a/bower_components/google-code-prettify/src/lang-pascal.js b/bower_components/google-code-prettify/src/lang-pascal.js
deleted file mode 100644
index 8612517c071506a5c4e30eeffaab46ed6522cf51..0000000000000000000000000000000000000000
--- a/bower_components/google-code-prettify/src/lang-pascal.js
+++ /dev/null
@@ -1,32 +0,0 @@
-// Contributed by peter dot kofler at code minus cop dot org
-
-/**
- * @fileoverview
- * Registers a language handler for (Turbo) Pascal.
- *
- * To use, include prettify.js and this file in your HTML page.
- * Then put your code in an HTML tag like
- * <pre class="prettyprint lang-pascal">(my Pascal code)</pre>
- *
- * @author peter dot kofler at code minus cop dot org
- */
-
-PR.registerLangHandler(
- PR.createSimpleLexer(
- [ // shortcutStylePatterns
- // 'single-line-string'
- [PR.PR_STRING, /^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$))/, null, '\''],
- // Whitespace
- [PR.PR_PLAIN, /^\s+/, null, ' \r\n\t\xA0']
- ],
- [ // fallthroughStylePatterns
- // A cStyleComments comment (* *) or {}
- [PR.PR_COMMENT, /^\(\*[\s\S]*?(?:\*\)|$)|^\{[\s\S]*?(?:\}|$)/, null],
- [PR.PR_KEYWORD, /^(?:ABSOLUTE|AND|ARRAY|ASM|ASSEMBLER|BEGIN|CASE|CONST|CONSTRUCTOR|DESTRUCTOR|DIV|DO|DOWNTO|ELSE|END|EXTERNAL|FOR|FORWARD|FUNCTION|GOTO|IF|IMPLEMENTATION|IN|INLINE|INTERFACE|INTERRUPT|LABEL|MOD|NOT|OBJECT|OF|OR|PACKED|PROCEDURE|PROGRAM|RECORD|REPEAT|SET|SHL|SHR|THEN|TO|TYPE|UNIT|UNTIL|USES|VAR|VIRTUAL|WHILE|WITH|XOR)\b/i, null],
- [PR.PR_LITERAL, /^(?:true|false|self|nil)/i, null],
- [PR.PR_PLAIN, /^[a-z][a-z0-9]*/i, null],
- // Literals .0, 0, 0.0 0E13
- [PR.PR_LITERAL, /^(?:\$[a-f0-9]+|(?:\d+(?:\.\d*)?|\.\d+)(?:e[+\-]?\d+)?)/i, null, '0123456789'],
- [PR.PR_PUNCTUATION, /^.[^\s\w\.$@\'\/]*/, null]
- ]),
- ['pascal']);
« no previous file with comments | « bower_components/google-code-prettify/src/lang-n.js ('k') | bower_components/google-code-prettify/src/lang-proto.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698