code-lexer 0.7 → 0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/code-lexer/languages/java.yml +38 -0
- data/lib/code-lexer/languages/javascript.yml +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 28e3de74936d4c5e81abc995cec85c4831c2383eedc098ef9097c45002e59bbb
|
4
|
+
data.tar.gz: a7f113035e970f213de2e0301454b6851eba80f661adb4ce4720545e280fbcef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ccf664386fd4ca8b505658d0059d1d44a4b428b84ab79ed5ea1f9d12219f7daa6261d1d058b797080d8719c1d842fad47441d2b99da578c4691c00e5e109efe
|
7
|
+
data.tar.gz: 65914ad6a9f937ce884a5e7c737e4e9857b5be9aa5dc81ba912d6c25a44deff5efeaff2b11b1a0cfe6ad7b77859a2862fe745d9a280b3f639be2e3cb3a678d6e
|
@@ -0,0 +1,38 @@
|
|
1
|
+
lexer:
|
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)
|
4
|
+
identifier:
|
5
|
+
- "[$A-Za-z_][$A-Za-z0-9_]*"
|
6
|
+
comment:
|
7
|
+
- \/\/[^\n\r]*(?=[\n\r])
|
8
|
+
- \/\/.*$
|
9
|
+
- \/\*([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\*+\/
|
10
|
+
string:
|
11
|
+
- \"([^"]|\\\")*\"
|
12
|
+
- \'[^']*\'
|
13
|
+
regex:
|
14
|
+
- \/([^/]|\\\/)*\/[gim]*
|
15
|
+
number:
|
16
|
+
- \-?[0-9]*\.[0-9]e\-?[0-9]+
|
17
|
+
- \-?[0-9]*\.[0-9]
|
18
|
+
- \-?[1-9][0-9]*
|
19
|
+
- \-?0[Xx][0-9A-Fa-f]+
|
20
|
+
- \-?[0-9]
|
21
|
+
- \-?0[0-7]+
|
22
|
+
operator:
|
23
|
+
- (\=\=\=|\!\=\=)
|
24
|
+
- (\<\=|\>\=|\=\=|\!\=|\=\>)
|
25
|
+
- (\&\&|\|\||\!)
|
26
|
+
- (\+\=|\-\=|\/\=|\*\=|\%\=|\+\+|\-\-)
|
27
|
+
- (\&|\||\~|\^|\<\<|\>\>)
|
28
|
+
- (\=|\+|\-|\/|\*|\%)
|
29
|
+
- (\.|\,|\:)
|
30
|
+
- (\<|\>|\?)
|
31
|
+
parenthesis:
|
32
|
+
- (\(|\)|\[|\]|\{|\})
|
33
|
+
semicolon:
|
34
|
+
- \;
|
35
|
+
newline:
|
36
|
+
- "[\\n\\r]"
|
37
|
+
space:
|
38
|
+
- \s+
|
@@ -1,6 +1,6 @@
|
|
1
1
|
lexer:
|
2
2
|
keyword:
|
3
|
-
- (?:abstract|arguments|boolean|break|byte|case|catch|char|const|continue|debugger|default|delete|do|
|
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)
|
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.
|
4
|
+
version: '0.8'
|
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
|
+
date: 2022-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: code-assertions
|
@@ -40,6 +40,7 @@ files:
|
|
40
40
|
- lib/code-lexer.rb
|
41
41
|
- lib/code-lexer/abstractor.rb
|
42
42
|
- lib/code-lexer/config.rb
|
43
|
+
- lib/code-lexer/languages/java.yml
|
43
44
|
- lib/code-lexer/languages/javascript.yml
|
44
45
|
- lib/code-lexer/lexer.rb
|
45
46
|
- lib/code-lexer/token.rb
|
@@ -62,7 +63,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
62
63
|
- !ruby/object:Gem::Version
|
63
64
|
version: '0'
|
64
65
|
requirements: []
|
65
|
-
rubygems_version: 3.3.
|
66
|
+
rubygems_version: 3.3.7
|
66
67
|
signing_key:
|
67
68
|
specification_version: 4
|
68
69
|
summary: Simple source code lexer
|