forked from ezdapps/backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcmds_list.go
More file actions
66 lines (61 loc) · 2.1 KB
/
cmds_list.go
File metadata and controls
66 lines (61 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Copyright 2016 The go-daylight Authors
// This file is part of the go-daylight library.
//
// The go-daylight library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-daylight library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-daylight library. If not, see <http://www.gnu.org/licenses/>.
package script
const (
// cmdUnknown = iota // error
// here are described the commands of bytecode
cmdPush = iota + 1 // Push value to stack
cmdVar // Push variable to stack
cmdExtend // Push extend variable to stack
cmdCallExtend // Call extend function
cmdPushStr // Push ident as string
cmdCall // call a function
cmdCallVari // call a variadic function
cmdReturn // return from function
cmdIf // run block if Value is true
cmdElse // run block if Value is false
cmdAssignVar // list of assigned var
cmdAssign // assign
cmdLabel // label for continue
cmdContinue // continue from label
cmdWhile // while
cmdBreak // break
cmdIndex // get index []
cmdSetIndex // set index []
cmdFuncName // set func name Func(...).Name(...)
cmdError // error command
)
// the commands for operations in expressions are listed below
const (
cmdNot = iota | 0x0100
cmdSign
)
const (
cmdAdd = iota | 0x0200
cmdSub
cmdMul
cmdDiv
cmdAnd
cmdOr
cmdEqual
cmdNotEq
cmdLess
cmdNotLess
cmdGreat
cmdNotGreat
cmdSys = 0xff
cmdUnary uint16 = 50
)