aboutsummaryrefslogtreecommitdiff
path: root/ROSE/rose.go
blob: 1296e62aa2e07137360bfb7e91976709e9f053dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package rose

// 2.4.6.0

// Context-specific Constructed 1
type Invoke struct {
	InvokeId int
	Opcode   int
	Argument interface{}
}

// Context-specific Constructed 2
type ReturnResult struct {
	InvokeId int
	Result   struct {
		Opcode   int
		Argument interface{}
	}
}