diff options
author | user1 <user1@ubuntu> | 2017-06-06 00:58:47 +0000 |
---|---|---|
committer | user1 <user1@ubuntu> | 2017-06-06 00:58:47 +0000 |
commit | 84d3355e7b9f9d67e18825c9895b001cd3ee2947 (patch) | |
tree | 3c100baa7b5d14b71bf814a1d286b4e633b8fdd6 /bruiser/bruiser-extra.h | |
parent | changed "Assignment Target Constrains Address of Array Subscript Expr" (diff) | |
parent | moved the other commands into lua now, so they are working again (diff) | |
download | mutator-84d3355e7b9f9d67e18825c9895b001cd3ee2947.tar.gz mutator-84d3355e7b9f9d67e18825c9895b001cd3ee2947.zip |
Merge branch 'master' of https://github.com/bloodstalker/mutator.git
Diffstat (limited to 'bruiser/bruiser-extra.h')
-rw-r--r-- | bruiser/bruiser-extra.h | 51 |
1 files changed, 35 insertions, 16 deletions
diff --git a/bruiser/bruiser-extra.h b/bruiser/bruiser-extra.h index 2f5de84..554b170 100644 --- a/bruiser/bruiser-extra.h +++ b/bruiser/bruiser-extra.h @@ -91,23 +91,21 @@ std::vector<std::string> BRUISR_COMMANDS = std::vector<std::string> LUA_FUNCS = { - "help", + "help()", "quit", "exit", - "list", - "list vars", - "list funcs", - "list structs", - "list classes", - "list unions", - "list records", - "history", - "shell", - "version", - "clear", - "hijack", - "hijack main", - "m0", + "history()", + "version()", + "clear()", + "m0()", + "runlua", + "Funcs()", + "Vars()", + "Arrays()", + "Structs()", + "Unions()", + "Classes()", + "hijackmain()", "_G", "_VERSION", "assert", @@ -267,7 +265,28 @@ std::vector<std::string> LUA_FUNCS = "LUA_INIT", "LUA_INIT_5_3", "LUA_PATH", - "LUA_PATH_5_3" + "LUA_PATH_5_3", + "and", + "break", + "do", + "else", + "elseif", + "end", + "false", + "for", + "function", + "if", + "in", + "local", + "nil", + "not", + "or", + "repeat", + "return", + "then", + "true", + "until", + "while" }; /**********************************************************************************************************************/ #endif |