1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-07-21 21:14:08 -07:00

Move OperatorAssociativity into the function class.

This commit is contained in:
Danila Fedorin 2017-07-27 09:33:01 -07:00
parent 0b8d2b0459
commit dea25bbc9c
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
package org.nwapw.abacus.tree;
package org.nwapw.abacus.function;
/**
* Enum to represent the associativity of an operator.

View File

@ -1,5 +1,6 @@
package org.nwapw.abacus.tree;
import org.nwapw.abacus.function.OperatorAssociativity;
import org.nwapw.abacus.lexing.Lexer;
import org.nwapw.abacus.lexing.pattern.Match;