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

Unified Diff: bower_components/google-code-prettify/src/lang-basic.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, 12 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-basic.js
diff --git a/bower_components/google-code-prettify/src/lang-basic.js b/bower_components/google-code-prettify/src/lang-basic.js
deleted file mode 100644
index b3c33fddef3b38715fbadd1f56af31d2c8d85167..0000000000000000000000000000000000000000
--- a/bower_components/google-code-prettify/src/lang-basic.js
+++ /dev/null
@@ -1,32 +0,0 @@
-// Contributed by peter dot kofler at code minus cop dot org
-
-/**
- * @fileoverview
- * Registers a language handler for Basic.
- *
- * 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-basic">(my BASIC 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 line comment that starts with REM
- [PR.PR_COMMENT, /^REM[^\r\n]*/, null],
- [PR.PR_KEYWORD, /^\b(?:AND|CLOSE|CLR|CMD|CONT|DATA|DEF ?FN|DIM|END|FOR|GET|GOSUB|GOTO|IF|INPUT|LET|LIST|LOAD|NEW|NEXT|NOT|ON|OPEN|OR|POKE|PRINT|READ|RESTORE|RETURN|RUN|SAVE|STEP|STOP|SYS|THEN|TO|VERIFY|WAIT)\b/, null],
- [PR.PR_PLAIN, /^[A-Z][A-Z0-9]?(?:\$|%)?/i, null],
- // Literals .0, 0, 0.0 0E13
- [PR.PR_LITERAL, /^(?:\d+(?:\.\d*)?|\.\d+)(?:e[+\-]?\d+)?/i, null, '0123456789'],
- [PR.PR_PUNCTUATION, /^.[^\s\w\.$%"]*/, null]
- // [PR.PR_PUNCTUATION, /^[-,:;!<>=\+^\/\*]+/]
- ]),
- ['basic','cbm']);
« no previous file with comments | « bower_components/google-code-prettify/src/lang-apollo.js ('k') | bower_components/google-code-prettify/src/lang-clj.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698