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
code like below will not parse correctly, due to the comment line inside the code block inside the multiline comment:
/** * * ```kotlin * object Foo { * /** this comment breaks syntax parsing */ * const val VAR = "VAL" * } * ``` */ object Foo { const val VAR = "VAL" }
The text was updated successfully, but these errors were encountered:
Bump, is there any plan to address this? @fwcd
Sorry, something went wrong.
This has been fixed.
(source_file [1, 0] - [14, 0] (multiline_comment [1, 0] - [9, 3]) (object_declaration [11, 1] - [13, 2] (type_identifier [11, 8] - [11, 11]) (class_body [11, 12] - [13, 2] (property_declaration [12, 5] - [12, 26] (modifiers [12, 5] - [12, 10] (property_modifier [12, 5] - [12, 10])) (variable_declaration [12, 15] - [12, 18] (simple_identifier [12, 15] - [12, 18])) (string_literal [12, 21] - [12, 26])))))
No branches or pull requests
code like below will not parse correctly, due to the comment line inside the code block inside the multiline comment:
The text was updated successfully, but these errors were encountered: