Skip to content

Commit

Permalink
refactor: compute storage schema outside of type-checking (#1336)
Browse files Browse the repository at this point in the history
  • Loading branch information
verytactical authored Jan 14, 2025
1 parent d4209dd commit 86995ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pipeline/precompile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ export function precompile(
// This creates TLB-style type definitions
ctx = resolveSignatures(ctx, ast);

// This creates allocations for all defined types
ctx = resolveAllocations(ctx);

// This checks and resolves all statements
ctx = resolveStatements(ctx, ast);

// This extracts error messages
ctx = resolveErrors(ctx, ast);

// This creates allocations for all defined types
ctx = resolveAllocations(ctx);

// Prepared context
return ctx;
}

0 comments on commit 86995ce

Please sign in to comment.