Files
helix/tests/indent/dart.dart

19 lines
254 B
Dart

class Example {
String classify(int value) {
switch (value) {
case 1:
return "one";
case 2:
print("two");
return "";
default:
return "other";
}
}
}
var multi = '''
unindented
indented
''';