We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
st.CTokenizer().tokenize('typedef struct {uint8_t* __data_rhj_, long size} byte_array_t;')
returns
(struct, TokenType.KEYWORD, (1, 9)), ({, TokenType.SPECIAL_SYMBOL, (1, 16)), (uint8_t, TokenType.IDENTIFIER, (1, 17)), (*, TokenType.OPERATOR, (1, 24)), (_, TokenType.SPECIAL_SYMBOL, (1, 26)), --> this (_, TokenType.SPECIAL_SYMBOL, (1, 27)), --> and this should be part of identifier. (data_rhj_, TokenType.IDENTIFIER, (1, 28)), (,, TokenType.OPERATOR, (1, 37)), (long, TokenType.KEYWORD, (1, 39)), (size, TokenType.IDENTIFIER, (1, 44)), (}, TokenType.SPECIAL_SYMBOL, (1, 48)), (byte_array_t, TokenType.IDENTIFIER, (1, 50)), (;, TokenType.SPECIAL_SYMBOL, (1, 62))]``` Similar mistake in Python.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
st.CTokenizer().tokenize('typedef struct {uint8_t* __data_rhj_, long size} byte_array_t;')
returns
The text was updated successfully, but these errors were encountered: