Simplified ssa.Instruction fields
All checks were successful
/ test (push) Successful in 14s

This commit is contained in:
Eduard Urbach 2025-06-21 20:27:17 +02:00
parent eb08b3bb37
commit ad20fdb477
Signed by: akyoto
GPG key ID: 49226B848C78F6C8

View file

@ -8,11 +8,9 @@ import (
// It is implemented as a "fat struct" for performance reasons.
// It contains all the fields necessary to represent all instruction types.
type Instruction struct {
Type Type
Args []*Instruction
Int int64
Float float64
Text string
Args []*Instruction
Int int64
Type Type
}
// String returns a human-readable representation of the instruction.