Skip to content
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

Multiline string literal breaks java highlighting #37

Open
alexeyinkin opened this issue Aug 4, 2022 · 0 comments
Open

Multiline string literal breaks java highlighting #37

alexeyinkin opened this issue Aug 4, 2022 · 0 comments

Comments

@alexeyinkin
Copy link

For this input:

class MyClass {
  private string str = "abc";
}

we get the correct result:

image

Make this string literal multiline:

class MyClass {
  private string str = """
  abc
  """;
}

and nothing is parsed:

image

Note that language is also null although java is explicitly passed.

This codepen shows that the original highlightjs can handle multiline string literals: https://codepen.io/alexey-inkin/pen/abYYVOj

Code
import 'package:highlight/highlight_core.dart';
import 'package:highlight/languages/java.dart';

void main() {
  highlight.registerLanguage('java', java);

  const text = '''
class MyClass {
  private string str = "abc";
}
''';
  final result = highlight.parse(text, language: 'java');
  print(result.nodes);

  const textMultiline = '''
class MyClass {
  private string str = """
  abc
  """;
}
''';
  final resultMultiline = highlight.parse(textMultiline, language: 'java');
  print(resultMultiline.nodes);
}
Output
[Instance of 'Node', Instance of 'Node', Instance of 'Node', Instance of 'Node', Instance of 'Node', Instance of 'Node', Instance of 'Node']
[Instance of 'Node']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant