Skip to content
This repository was archived by the owner on Jun 24, 2023. It is now read-only.

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
erri120 committed Jun 28, 2022
1 parent 2e15565 commit d776b10
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions compiler-explorer/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ export default defineConfig({
target: 'esnext',
polyfillDynamicImport: false,
},
server: {
port: 9999
}
});
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ allow = [
"MIT",
"CC0-1.0",
"Apache-2.0",
"BSD-3-Clause"
#"Apache-2.0 WITH LLVM-exception",
]
# List of explicitly disallowed licenses
Expand Down
2 changes: 1 addition & 1 deletion parser/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ mod tests {

let stats = dhat::HeapStats::get();

dhat::assert_eq!(5_285_989, stats.total_bytes);
dhat::assert_eq!(6_414_949, stats.total_bytes);
dhat::assert_eq!(34_303, stats.total_blocks);
}
}
1 change: 1 addition & 0 deletions parser/src/parser_diagnostics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ use papyrus_compiler_diagnostics::{
error_paint, good_paint, Diagnostic, SeverityLevel, SourceId, SourceRange,
};

#[derive(Debug, PartialEq)]
pub struct ParserDiagnostic<'source> {
source_id: SourceId,
error: ParserError<'source>,
Expand Down

0 comments on commit d776b10

Please sign in to comment.