Lines lexed statistic
This commit is contained in:
@@ -103,7 +103,6 @@ for i in meta.token_simple_expr:
|
||||
|
||||
// Init types
|
||||
pctx->type__void = {TYPE_VOID};
|
||||
// pctx->type__string = {TYPE_STRING, sizeof(String), __alignof(String)};
|
||||
pctx->type__bool = {TYPE_BOOL, sizeof(bool), __alignof(bool)};
|
||||
pctx->type__type = {TYPE_TYPE, sizeof(S64), __alignof(S64)};
|
||||
|
||||
@@ -132,6 +131,7 @@ for i in meta.token_simple_expr:
|
||||
pctx->type_int = &pctx->type__int;
|
||||
pctx->type_void = &pctx->type__void;
|
||||
|
||||
// pctx->type__string = {TYPE_STRING, sizeof(String), __alignof(String)};
|
||||
// pctx->type_any; // Needs to be inited at runtime
|
||||
|
||||
pctx->type_type = &pctx->type__type;
|
||||
|
||||
Reference in New Issue
Block a user