aboutsummaryrefslogtreecommitdiff
path: root/node_modules/highlight.js/lib/languages/q.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
commitcc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch)
tree92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/highlight.js/lib/languages/q.js
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/highlight.js/lib/languages/q.js')
-rw-r--r--node_modules/highlight.js/lib/languages/q.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/node_modules/highlight.js/lib/languages/q.js b/node_modules/highlight.js/lib/languages/q.js
deleted file mode 100644
index 9dbfbc629..000000000
--- a/node_modules/highlight.js/lib/languages/q.js
+++ /dev/null
@@ -1,22 +0,0 @@
-module.exports = function(hljs) {
- var Q_KEYWORDS = {
- keyword:
- 'do while select delete by update from',
- literal:
- '0b 1b',
- built_in:
- 'neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum',
- type:
- '`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid'
- };
- return {
- aliases:['k', 'kdb'],
- keywords: Q_KEYWORDS,
- lexemes: /(`?)[A-Za-z0-9_]+\b/,
- contains: [
- hljs.C_LINE_COMMENT_MODE,
- hljs.QUOTE_STRING_MODE,
- hljs.C_NUMBER_MODE
- ]
- };
-}; \ No newline at end of file