-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Various fixes #166
fix: Various fixes #166
Conversation
… into mb/fix-apostrophe-lexing
This reverts commit 5653e1a.
std::string input = R"( | ||
DC CL1'' | ||
|
||
CNOPSYM CNOP 0,8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add a few more variants...
add also negative tests?
stringer()); | ||
} // namespace | ||
|
||
TEST_P(parser_string_fixture, basic) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add also negative tests?
@@ -608,7 +608,7 @@ C_t hlasm_context::get_type_attr(var_sym_ptr var_symbol, const std::vector<size_ | |||
if (offset.empty()) | |||
value = setc_sym->get_value(); | |||
else | |||
value = setc_sym->get_value(offset.front()); | |||
value = setc_sym->get_value(offset.front() - 1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add a unit test?
Kudos, SonarCloud Quality Gate passed! |
🎉 This PR is included in version 0.15.0-beta.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 0.15.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
fix: lexer generates the ATTR token only on data attributes that always consume the apostrophe
fix: fix format of STNSM and STOSM instructions
fix: CUUTF and CU21 have last parameter optional
fix: evaluation of T'&VAR(num), where VAR is type C-type var symbol array
fix: instruction format of
LLI[LH][LH]
feat: limited CNOP instruction implementation