BinaryOperatorExpressions are meant to evaluate to a value, they MUST be ValueInstructions

This commit is contained in:
Tristan B. Velloza Kildaire 2022-04-08 00:34:50 +02:00
parent ba63f85df9
commit 1b002382d5
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ public final class LiteralValue : Value
*
* Any sort of Binary Operator
*/
public class BinOpInstr : Instruction
public class BinOpInstr : Value
{
import compiler.symbols.data;
private Instruction lhs;