Skip to content

Commit

Permalink
fixed missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexHaxe committed Nov 19, 2024
1 parent 121c3c2 commit c5ed08b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/refactor/CacheAndTyperContext.hx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package refactor;

import refactor.ITyper;
import refactor.VerboseLogger;
import refactor.discover.FileList;
import refactor.discover.NameMap;
import refactor.discover.TypeList;

typedef CacheAndTyperContext = {
var nameMap:NameMap;
var fileList:FileList;
var typeList:TypeList;
var verboseLog:VerboseLogger;
var typer:Null<ITyper>;
}

0 comments on commit c5ed08b

Please sign in to comment.