code-lexer 0.8 → 0.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 28e3de74936d4c5e81abc995cec85c4831c2383eedc098ef9097c45002e59bbb
4
- data.tar.gz: a7f113035e970f213de2e0301454b6851eba80f661adb4ce4720545e280fbcef
3
+ metadata.gz: 327106d8eae0b7162de5a80a84431ea0e6e6718bf876cde259f7616a8552ed5b
4
+ data.tar.gz: 458d333663e4cd2d5aabce529ec789f0a3bd25233bb928f9d1d88bae4e5ac7f1
5
5
  SHA512:
6
- metadata.gz: 1ccf664386fd4ca8b505658d0059d1d44a4b428b84ab79ed5ea1f9d12219f7daa6261d1d058b797080d8719c1d842fad47441d2b99da578c4691c00e5e109efe
7
- data.tar.gz: 65914ad6a9f937ce884a5e7c737e4e9857b5be9aa5dc81ba912d6c25a44deff5efeaff2b11b1a0cfe6ad7b77859a2862fe745d9a280b3f639be2e3cb3a678d6e
6
+ metadata.gz: 05c538162f9f59f10a40ab9bd3db5a5b4e0bf76e705ef47e6d271c83010860d976c43a35a859bd63f7e397fd30cf6f0478a1cf565317a27242f282cf59864ed1
7
+ data.tar.gz: e3dbc89e89f2bfddc58c3266eb8b92bd6f6c94201b72435f869c10d6f78ac819efde6cbae5aaf8d236d85718f22ab0e960aa5a8b5bfa454b94c75f18c51bcb07
@@ -1,6 +1,6 @@
1
1
  lexer:
2
2
  keyword:
3
- - (?:abstract|arguments|boolean|break|byte|case|catch|char|const|continue|debugger|default|delete|double|do|else|eval|false|finally|final|float|for|function|goto|if|implements|int|in|instanceof|interface|let|long|native|new|null|package|private|protected|public|return|short|static|switch|synchronized|this|throws|throw|transient|true|try|typeof|var|void|volatile|while|with|yield|class|enum|export|extends|import|super|from|strictfp)
3
+ - (?:(\b(abstract)\b|\b(arguments)\b|\b(boolean)\b|\b(break)\b|\b(byte)\b|\b(case)\b|\b(catch)\b|\b(char)\b|\b(const)\b|\b(continue)\b|\b(debugger)\b|\b(default)\b|\b(delete)\b|\b(double)\b|\b(do)\b|\b(else)\b|\b(eval)\b|\b(false)\b|\b(finally)\b|\b(final)\b|\b(float)\b|\b(for)\b|\b(function)\b|\b(goto)\b|\b(if)\b|\b(implements)\b|\b(int)\b|\b(in)\b|\b(instanceof)\b|\b(interface)\b|\b(let)\b|\b(long)\b|\b(native)\b|\b(new)\b|\b(null)\b|\b(package)\b|\b(private)\b|\b(protected)\b|\b(public)\b|\b(return)\b|\b(short)\b|\b(static)\b|\b(switch)\b|\b(synchronized)\b|\b(this)\b|\b(throws)\b|\b(throw)\b|\b(transient)\b|\b(true)\b|\b(try)\b|\b(typeof)\b|\b(var)\b|\b(void)\b|\b(volatile)\b|\b(while)\b|\b(with)\b|\b(yield)\b|\b(class)\b|\b(enum)\b|\b(export)\b|\b(extends)\b|\b(import)\b|\b(super)\b|\b(from)\b)|\b(strictfp)\b)
4
4
  identifier:
5
5
  - "[$A-Za-z_][$A-Za-z0-9_]*"
6
6
  comment:
@@ -1,6 +1,6 @@
1
1
  lexer:
2
2
  keyword:
3
- - (?:abstract|arguments|boolean|break|byte|case|catch|char|const|continue|debugger|default|delete|double|do|else|eval|false|finally|final|float|for|function|goto|if|implements|int|in|instanceof|interface|let|long|native|new|null|package|private|protected|public|return|short|static|switch|synchronized|this|throws|throw|transient|true|try|typeof|var|void|volatile|while|with|yield|class|enum|export|extends|import|super|from)
3
+ - (?:(\b(arguments)\b|\b(break)\b|\b(case)\b|\b(catch)\b|\b(const)\b|\b(continue)\b|\b(debugger)\b|\b(default)\b|\b(delete)\b|\b(do)\b|\b(else)\b|\b(eval)\b|\b(false)\b|\b(finally)\b|\b(for)\b|\b(function)\b|\b(if)\b|\b(implements)\b|\b(in)\b|\b(instanceof)\b|\b(interface)\b|\b(let)\b|\b(new)\b|\b(null)\b|\b(package)\b|\b(private)\b|\b(protected)\b|\b(public)\b|\b(return)\b|\b(static)\b|\b(switch)\b|\b(this)\b|\b(throw)\b|\b(true)\b|\b(try)\b|\b(typeof)\b|\b(var)\b|\b(void)\b|\b(while)\b|\b(with)\b|\b(yield)\b|\b(class)\b|\b(enum)\b|\b(export)\b|\b(extends)\b|\b(import)\b|\b(super)\b|\b(from)\b))
4
4
  identifier:
5
5
  - "[$A-Za-z_][$A-Za-z0-9_]*"
6
6
  comment:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: code-lexer
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.8'
4
+ version: '0.9'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simone Scalabrino
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-09 00:00:00.000000000 Z
11
+ date: 2022-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: code-assertions