File tree 1 file changed +2
-0
lines changed
src/libtriton/bindings/python/namespaces
1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ The AST_NODE namespace contains all kinds of node.
64
64
- **AST_NODE.EQUAL**
65
65
- **AST_NODE.EXTRACT**
66
66
- **AST_NODE.INVALID**
67
+ - **AST_NODE.IFF**
67
68
- **AST_NODE.ITE**
68
69
- **AST_NODE.LAND**
69
70
- **AST_NODE.LET**
@@ -123,6 +124,7 @@ namespace triton {
123
124
xPyDict_SetItemString (astNodeDict, " EQUAL" , PyLong_FromUint32 (triton::ast::EQUAL_NODE));
124
125
xPyDict_SetItemString (astNodeDict, " EXTRACT" , PyLong_FromUint32 (triton::ast::EXTRACT_NODE));
125
126
xPyDict_SetItemString (astNodeDict, " INVALID" , PyLong_FromUint32 (triton::ast::INVALID_NODE));
127
+ xPyDict_SetItemString (astNodeDict, " IFF" , PyLong_FromUint32 (triton::ast::IFF_NODE));
126
128
xPyDict_SetItemString (astNodeDict, " ITE" , PyLong_FromUint32 (triton::ast::ITE_NODE));
127
129
xPyDict_SetItemString (astNodeDict, " LAND" , PyLong_FromUint32 (triton::ast::LAND_NODE));
128
130
xPyDict_SetItemString (astNodeDict, " LET" , PyLong_FromUint32 (triton::ast::LET_NODE));
You can’t perform that action at this time.
0 commit comments