17 lines
250 B
Plaintext
17 lines
250 B
Plaintext
package slangc.bytecode;
|
|
|
|
/**
|
|
* This denotes the type of a typeName on the stack (a typeName which instructions work with).
|
|
* @author Zak
|
|
*
|
|
*/
|
|
public enum StackType {
|
|
DUCK,
|
|
OBJECT,
|
|
INT32,
|
|
INT64,
|
|
FLOAT32,
|
|
FLOAT64,
|
|
BOOLEAN
|
|
}
|