Codebase list ohcount / upstream/latest test / expected_dir / foo.dart
upstream/latest

Tree @upstream/latest (Download .tar.gz)

foo.dart @upstream/latestraw · history · blame

1
2
3
4
5
6
7
8
9
dart	code	void main() {
dart	comment	  // Line comment
dart	blank	
dart	comment	  /* Block
dart	comment	     comment */
dart	blank	
dart	code	  print("Hello!"); // Code with line comment
dart	code	  print("World!"); /* Code with block comment */
dart	code	}