Skip to content

Commit b3464b8

Browse files
committed
Renamed eq_strict_expr/neq_strict_expr rules to identical_expr/not_identical_expr
1 parent 4ce1600 commit b3464b8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/main/java/fr/adrienbrault/idea/symfony2plugin/expressionLanguage/ExpressionLanguage.bnf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ private mul_group ::= mul_expr | div_expr | mod_expr
8686
private add_group ::= plus_expr | minus_expr
8787
private ternary_group ::= ternary_expr | elvis_expr
8888

89-
private rel_group ::= eq_strict_expr
89+
private rel_group ::= identical_expr
9090
| eq_expr
91-
| neq_strict_expr
91+
| not_identical_expr
9292
| neq_expr
9393
| gte_expr
9494
| gt_expr
@@ -110,8 +110,8 @@ concat_expr ::= expr OP_CONCAT expr
110110
minus_expr ::= expr OP_MINUS expr
111111
plus_expr ::= expr OP_PLUS expr
112112
range_expr ::= expr OP_RANGE expr
113-
eq_strict_expr ::= expr OP_IDENTICAL expr
114-
neq_strict_expr ::= expr OP_NOT_IDENTICAL expr
113+
identical_expr ::= expr OP_IDENTICAL expr
114+
not_identical_expr ::= expr OP_NOT_IDENTICAL expr
115115
eq_expr ::= expr OP_EQ expr
116116
neq_expr ::= expr OP_NEQ expr
117117
gt_expr ::= expr OP_GT expr

src/test/java/fr/adrienbrault/idea/symfony2plugin/tests/expressionLanguage/testData/IdenticalExpr.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Expression Language File
2-
ExpressionLanguageEqStrictExprImpl(EQ_STRICT_EXPR)
2+
ExpressionLanguageIdenticalExprImpl(IDENTICAL_EXPR)
33
ExpressionLanguageRefExprImpl(REF_EXPR)
44
ExpressionLanguageIdentifierImpl(IDENTIFIER)
55
PsiElement( ExpressionLanguageType.id)('a')

src/test/java/fr/adrienbrault/idea/symfony2plugin/tests/expressionLanguage/testData/NotIdenticalExpr.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Expression Language File
2-
ExpressionLanguageNeqStrictExprImpl(NEQ_STRICT_EXPR)
2+
ExpressionLanguageNotIdenticalExprImpl(NOT_IDENTICAL_EXPR)
33
ExpressionLanguageRefExprImpl(REF_EXPR)
44
ExpressionLanguageIdentifierImpl(IDENTIFIER)
55
PsiElement( ExpressionLanguageType.id)('a')

0 commit comments

Comments
 (0)