Skip to content

Commit

Permalink
Move stdlib
Browse files Browse the repository at this point in the history
  • Loading branch information
Rigidity committed Jul 6, 2024
1 parent f6342e0 commit a03d87d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rue-compiler/src/compiler/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pub fn setup_compiler(db: &mut Database) -> CompilerContext<'_> {
}

pub fn load_standard_library(ctx: &mut CompilerContext<'_>) -> SymbolId {
let (root, parser_errors) = parse(include_str!("../../../../std/stdlib.rue"));
let (root, parser_errors) = parse(include_str!("../../stdlib.rue"));
assert_eq!(parser_errors, Vec::new());

let (module_id, declarations) = ctx.compiler.declare_root(&root);
Expand Down
File renamed without changes.

0 comments on commit a03d87d

Please sign in to comment.