summaryrefslogtreecommitdiff
path: root/support/highlight/langDefs/js.lang
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /support/highlight/langDefs/js.lang
Initial commit
Diffstat (limited to 'support/highlight/langDefs/js.lang')
-rw-r--r--support/highlight/langDefs/js.lang40
1 files changed, 40 insertions, 0 deletions
diff --git a/support/highlight/langDefs/js.lang b/support/highlight/langDefs/js.lang
new file mode 100644
index 0000000000..e74161435f
--- /dev/null
+++ b/support/highlight/langDefs/js.lang
@@ -0,0 +1,40 @@
+# Javascript language definition file
+#
+# Author: Andre Simon
+# Mail: andre.simon1@gmx.de
+# Date: 26.1.2002
+# ------------------------------------------
+# This file is a part of highlight, a free source code converter released under the GPL.
+#
+# The file is used to describe keywords and special symbols of programming languages.
+# See README in the highlight directory for details.
+#
+# New definition files for future releases of highlight are always appreciated ;)
+#
+# ----------
+# andre.simon1@gmx.de
+# http:/www.andre-simon.de/
+
+$DESCRIPTION=Javascript
+
+$KEYWORDS(kwa)= abstract break class const continue debugger default
+delete enum export extends finally instanceof import implements in goto
+native package private protected public super throw throws transient
+typeof void false with for this switch try while if do else return null case catch true
+ new prototype var function
+
+$KEYWORDS(kwb)= boolean byte char double float int long short static
+
+$KEYWORDS(kwd)=regex((\w+)\s*\()
+
+$SL_COMMENT= //
+
+$ML_COMMENT= /* */
+
+$STRINGDELIMITERS= " '
+
+$IGNORECASE=false
+
+$ESCCHAR=regex(\\\d{3}|\\x\p{XDigit}{2}|\\[ntvbrfa\\\?'"])
+
+$SYMBOLS= ( ) [ ] { } , ; : & | < > ! = / * % + - .