cesyms, updated for latest libdparse version

This commit is contained in:
Basile Burg 2016-03-15 01:24:16 +01:00
parent ea1314fe4c
commit 2c80936f1d
2 changed files with 4 additions and 3 deletions

View File

@ -24,7 +24,7 @@ module cesyms;
import std.stdio, std.path, std.file, std.array, std.string;
import std.getopt, std.json, std.conv;
import dparse.lexer, dparse.ast, dparse.parser;
import dparse.lexer, dparse.ast, dparse.parser, dparse.rollback_allocator;
import std.traits;
enum ListFmt
@ -63,10 +63,11 @@ void main(string[] args)
return;
// load and parse the file
RollbackAllocator alloc;
auto config = LexerConfig(fname, StringBehavior.source, WhitespaceBehavior.skip);
auto scache = StringCache(StringCache.defaultBucketCount);
auto ast = parseModule(getTokensForParser(source, config, &scache), fname,
null, &(SymbolListBuilder.astError));
&alloc, &(SymbolListBuilder.astError));
// visit each root member
SymbolListBuilder slb = construct!SymbolListBuilder;

@ -1 +1 @@
Subproject commit 2f91d07f698545ebc94ede00d5085aa59dbe38b3
Subproject commit 6a42726a7b8286df19db561a2f35f75d8c4a9e77