Lines lexed statistic
This commit is contained in:
@@ -63,11 +63,6 @@ In the future
|
||||
- [ ] Basic
|
||||
- [ ] Detecting if return was called
|
||||
|
||||
- [ ] Builtin data structures
|
||||
- [ ] Some way to take slice of data
|
||||
- [ ] Dynamic arrays
|
||||
- [ ] Hash tables
|
||||
|
||||
- [ ] Programming constructs
|
||||
- [ ] Using language construct
|
||||
- [ ] Named loops and breaking out of them
|
||||
@@ -77,8 +72,6 @@ In the future
|
||||
- [ ] Interpreter
|
||||
- [ ] Code generation
|
||||
|
||||
- [ ] Parametric Polymorphism
|
||||
|
||||
Ideas
|
||||
- [ ] #test construct that would gather all tests and run them on start of program or something
|
||||
- [ ] Inject stack traces into the program
|
||||
@@ -132,6 +125,7 @@ static void compile_file(Allocator *allocator, String filename, U32 compile_flag
|
||||
printf("parsing = %f\n", pctx->time.parsing);
|
||||
printf("typecheck = %f\n", pctx->time.typechecking);
|
||||
printf("generatin = %f\n", pctx->time.code_generation);
|
||||
printf("lines lexed= %d\n", pctx->lines_lexed);
|
||||
}
|
||||
|
||||
if (is_flag_set(compile_flags, COMPILE_PRINT_ALLOCATOR_STATS_BEFORE_DESTROY)) {
|
||||
|
||||
Reference in New Issue
Block a user