Skip to content

Commit

Permalink
More strict typing for Parser
Browse files Browse the repository at this point in the history
  • Loading branch information
dikmax committed Nov 10, 2015
1 parent be299dc commit a177808
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 71 deletions.
2 changes: 1 addition & 1 deletion benchmark/run.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ main() async {
String data = await response.transform(UTF8.decoder).join();
print("File length: ${data.length}");
MdProcBenchmark.main(data);
//MarkdownBenchmark.main(data);
MarkdownBenchmark.main(data);
}
2 changes: 1 addition & 1 deletion lib/definitions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class Target {

abstract class Block {}

// TODO char type, distace between chars, chars count
// TODO char type, distance between chars, chars count
class HorizontalRule extends Block {
static final HorizontalRule _instance = new HorizontalRule._internal();

Expand Down

0 comments on commit a177808

Please sign in to comment.