Skip to content

Commit

Permalink
fix(objectionary#2930): vertex
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Mar 12, 2024
1 parent 633908b commit 4591a44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eo-parser/src/main/java/org/eolang/parser/XePhiListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -214,13 +214,13 @@ public void exitBindings(final PhiParser.BindingsContext ctx) {
@Override
public void enterBinding(final PhiParser.BindingContext ctx) {
if (ctx.alphaBinding() != null) {
if (ctx.alphaBinding().attribute().VTX() != null) {
if (ctx.alphaBinding().attribute().VERTEX() != null) {
this.objs.add(new Objects.ObjXembly());
}
this.objects().start();
}
if (ctx.emptyBinding() != null) {
if (ctx.emptyBinding().attribute().VTX() != null) {
if (ctx.emptyBinding().attribute().VERTEX() != null) {
this.objs.add(new Objects.ObjXembly());
}
this.objects().start();
Expand Down

0 comments on commit 4591a44

Please sign in to comment.