neon/operator_string.go
2023-07-31 11:43:33 -03:00

74 lines
1.6 KiB
Go

// Code generated by "stringer -type Operator"; DO NOT EDIT.
package neon
import "strconv"
func _() {
// An "invalid array index" compiler error signifies that the constant values have changed.
// Re-run the stringer command to generate them again.
var x [1]struct{}
_ = x[NOP-0]
_ = x[LAI-1]
_ = x[LAM-2]
_ = x[LAB-3]
_ = x[LBI-4]
_ = x[LBM-5]
_ = x[LBA-6]
_ = x[SWP-7]
_ = x[STA-8]
_ = x[STB-9]
_ = x[ADI-10]
_ = x[ADM-11]
_ = x[ADB-12]
_ = x[ACI-13]
_ = x[ACM-14]
_ = x[ACB-15]
_ = x[INA-16]
_ = x[INB-17]
_ = x[SBI-18]
_ = x[SBM-19]
_ = x[SBB-20]
_ = x[SCI-21]
_ = x[SCM-22]
_ = x[SCB-23]
_ = x[DEA-24]
_ = x[DEB-25]
_ = x[TEI-26]
_ = x[TEM-27]
_ = x[TEB-28]
_ = x[TGI-29]
_ = x[TGM-30]
_ = x[TGB-31]
_ = x[TLI-32]
_ = x[TLM-33]
_ = x[TLB-34]
_ = x[TFC-35]
_ = x[TFI-36]
_ = x[JMP-37]
_ = x[JRF-38]
_ = x[JRB-39]
_ = x[JSR-40]
_ = x[RET-41]
_ = x[SET-42]
_ = x[SEC-43]
_ = x[SEI-44]
_ = x[SEJ-45]
_ = x[CLT-46]
_ = x[CLC-47]
_ = x[CLI-48]
_ = x[CLJ-49]
_ = x[INT-50]
}
const _Operator_name = "NOPLAILAMLABLBILBMLBASWPSTASTBADIADMADBACIACMACBINAINBSBISBMSBBSCISCMSCBDEADEBTEITEMTEBTGITGMTGBTLITLMTLBTFCTFIJMPJRFJRBJSRRETSETSECSEISEJCLTCLCCLICLJINT"
var _Operator_index = [...]uint8{0, 3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 51, 54, 57, 60, 63, 66, 69, 72, 75, 78, 81, 84, 87, 90, 93, 96, 99, 102, 105, 108, 111, 114, 117, 120, 123, 126, 129, 132, 135, 138, 141, 144, 147, 150, 153}
func (i Operator) String() string {
if i >= Operator(len(_Operator_index)-1) {
return "Operator(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _Operator_name[_Operator_index[i]:_Operator_index[i+1]]
}