From 58287455d64ab16091522bf8a358b079ef05daad Mon Sep 17 00:00:00 2001 From: Daniel Gavin Date: Fri, 4 Mar 2022 12:17:00 +0100 Subject: strip colons and update ast to use unions --- src/testing/testing.odin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/testing/testing.odin') diff --git a/src/testing/testing.odin b/src/testing/testing.odin index 4a40f16..d6c01c8 100644 --- a/src/testing/testing.odin +++ b/src/testing/testing.odin @@ -38,7 +38,7 @@ setup :: proc(src: ^Source) { src.document.allocator = new(common.Scratch_Allocator); src.document.package_name = "test"; - common.scratch_allocator_init(src.document.allocator, mem.kilobytes(20), context.temp_allocator); + common.scratch_allocator_init(src.document.allocator, mem.kilobytes(200), context.temp_allocator); //no unicode in tests currently current, last: u8; @@ -111,7 +111,7 @@ setup :: proc(src: ^Source) { if !ok || file.syntax_error_count > 0 { panic("Parser error in test package source"); } - + if ret := index.collect_symbols(&index.indexer.static_index.collection, file, uri.uri); ret != .None { return; } -- cgit v1.2.3