remove useless scope STC from libdexed-d local decls

This commit is contained in:
Basile Burg 2020-06-14 19:08:42 +02:00
parent 48f1506165
commit 69b31bd261
2 changed files with 14 additions and 8 deletions

View File

@ -34,11 +34,11 @@ export extern(C) FpcArray!char* listSymbols(const(char)* src, bool deep)
errors ~= construct!(AstError)(cast(ErrorType) err, message, line, col); errors ~= construct!(AstError)(cast(ErrorType) err, message, line, col);
} }
scope LexerConfig config; LexerConfig config;
scope RollbackAllocator rba; RollbackAllocator rba;
scope StringCache sCache = StringCache(StringCache.defaultBucketCount); StringCache sCache = StringCache(StringCache.defaultBucketCount);
scope mod = src[0 .. src.strlen] auto mod = src[0 .. src.strlen]
.getTokensForParser(config, &sCache) .getTokensForParser(config, &sCache)
.parseModule("", &rba, &handleErrors); .parseModule("", &rba, &handleErrors);

View File

@ -10,20 +10,26 @@ import
export extern(C) FpcArray!(char)* todoItems(const(char)* joinedFiles) export extern(C) FpcArray!(char)* todoItems(const(char)* joinedFiles)
{ {
scope Appender!(char[]) stream; Appender!(char[]) stream;
scope LexerConfig config = LexerConfig("", StringBehavior.source); LexerConfig config = LexerConfig("", StringBehavior.source);
scope StringCache cache = StringCache(4096); StringCache cache = StringCache(4096);
stream.reserve(32); stream.reserve(32);
stream.put("object TTodoItems\ritems=<"); stream.put("object TTodoItems\ritems=<");
foreach (fname; joinedFilesToFiles(joinedFiles)) foreach (fname; joinedFilesToFiles(joinedFiles))
{ {
stream.reserve(256); stream.reserve(256);
scope source = cast(ubyte[]) std.file.read(fname); auto source = cast(ubyte[]) std.file.read(fname);
DLexer(source, config, &cache) DLexer(source, config, &cache)
.filter!(a => a.type == tok!"comment") .filter!(a => a.type == tok!"comment")
.each!(t => analyze(t, fname, stream)); .each!(t => analyze(t, fname, stream));
destroy(source);
} }
stream.put(">end"); stream.put(">end");
scope (exit)
{
destroy(stream);
destroy(cache);
}
return (FpcArray!char).fromArray(stream.data); return (FpcArray!char).fromArray(stream.data);
} }