Skip to content

Commit 845cbca

Browse files
committed
Added another default recognizer location to gitignore.
1 parent 29a4bf7 commit 845cbca

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
1414
hs_err_pid*
1515

16+
# IntelliJ ANTLR plugin recognizer default locations:
17+
core/gen/
18+
core/src/main/antlr4/org/evomaster/core/parser/gen
19+
1620
**/*.DS_Store
1721
/.idea/
1822
.idea/
@@ -33,8 +37,6 @@ client-java/instrumentation-shared/target/
3337
client-java/database-spy/target/
3438
client-java/ci-utils/target
3539
core/target/
36-
# IntelliJ ANTLR plugin recognizer default location:
37-
core/gen/
3840
/core-tests/e2e-tests/dropwizard-examples/target/
3941
/core-tests/e2e-tests/e2e-tests-utils/target/
4042
/core-tests/e2e-tests/spring/spring-rest-openapi-v2/target/

core/src/main/antlr4/org/evomaster/core/parser/RegexJavaParser.g4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ classAtomNoDash
167167
| BaseChar
168168
| DecimalDigit
169169
| COMMA | CARET | DOLLAR | DOT | STAR | PLUS | QUESTION
170-
| PAREN_open | PAREN_close | BRACKET_open | BRACE_open | BRACE_close | OR | E | Q
170+
| PAREN_open | PAREN_close | BRACKET_open | BRACE_open | BRACE_close | OR
171171
| COLON
172172
// should be interpreted literally:
173173
// As they are lexer tokens, these character sequences are captured as such. In particular these require some extra

0 commit comments

Comments
 (0)