-
-
Notifications
You must be signed in to change notification settings - Fork 21
Implemented Tags #26
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
Implemented Tags #26
Conversation
| { | ||
| // TODO: Why is this true again? | ||
| _emitter->write_path(Command::READ_COUNT, CommandFlag::NO_FLAGS, val, true); | ||
| _emitter->write_path(Command::READ_COUNT, CommandFlag::NO_FLAGS, val, false); |
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.
I'm going to investigate this before I approve. Just to make sure...
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.
Okay, this actually needs to be true and the fact it's failing means there's another issue. With your change, the CNT? command actually won't work anymore because it's expecting an index in the container visits table, not the actual byte offset of the container in the instruction data. Can you create a new issue in GitHub with the failing file and the error message?
|
The tags defined from Inkle works different, their tags are only enabled for a line per default. Also, you are able to define tags for knots which than can be queried and also global tags are existed, the different cases are missing in this implementation. |
|
Added test cases and a bit documentation ^^, it works the same way as "inklecate" |
|
Looks like a windows unit test is failing, but passing on linux/mac? Seems like an extra 0 is being inserted into the output for some reason. |
|
It was a missing NULL terminator when setting a global string from program, no idea why that did not fail earlier. |
|
The fix is now in #30 |
|
Closed because fork is deleted, continue in #32 |
Added tag ( '#') parsing and runtime ability to query tags.