diff options
| author | Rusty Wagner <rusty@vector35.com> | 2017-01-03 18:04:31 -0500 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2017-01-03 18:04:31 -0500 |
| commit | d9455e8b6319ccb766a3a9f274244a54d159e7f4 (patch) | |
| tree | 1dfe0f26200f41e72ea1bbe6333678ccf6b27a20 /function.cpp | |
| parent | 990cface5a0b9b814f423e45449a7d5f3cb6c19d (diff) | |
Tokenize types
Diffstat (limited to 'function.cpp')
| -rw-r--r-- | function.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/function.cpp b/function.cpp index 109b6f49..b1d008ee 100644 --- a/function.cpp +++ b/function.cpp @@ -567,6 +567,10 @@ vector<vector<InstructionTextToken>> Function::GetBlockAnnotations(Architecture* token.type = lines[i].tokens[j].type; token.text = lines[i].tokens[j].text; token.value = lines[i].tokens[j].value; + token.size = lines[i].tokens[j].size; + token.operand = lines[i].tokens[j].operand; + token.context = lines[i].tokens[j].context; + token.address = lines[i].tokens[j].address; line.push_back(token); } result.push_back(line); |
