-
-
Notifications
You must be signed in to change notification settings - Fork 662
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include module path in virtual file names (#11852)
* Include module path in virtual file names * m -> mpath * Use directory structure instead of dotpath * [tests] Add test * Handle empty package
- Loading branch information
Showing
4 changed files
with
61 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import sys.io.File; | ||
|
||
class Main { | ||
#if macro | ||
public static function init() { | ||
var pos = haxe.macro.Context.currentPos(); | ||
|
||
haxe.macro.Context.onAfterInitMacros(() -> { | ||
haxe.macro.Context.defineType({ | ||
pack: [], | ||
name: "TopLevelType", | ||
pos: pos, | ||
kind: TDStructure, | ||
fields: [] | ||
}); | ||
|
||
haxe.macro.Context.defineType({ | ||
pack: ["foo", "bar"], | ||
name: "DefinedType", | ||
pos: pos, | ||
kind: TDStructure, | ||
fields: [] | ||
}); | ||
}); | ||
} | ||
#else | ||
public static function main() { | ||
// Add generated modules as dependencies for Main | ||
var _:TopLevelType = {}; | ||
var _:foo.bar.DefinedType = {}; | ||
|
||
var lines = File.getContent("dump/eval/dependencies.dump").split("\n"); | ||
lines = lines.map(l -> StringTools.replace(l, "\\", "/")); | ||
inline function check(module:String) { | ||
var line = Lambda.filter(lines, l -> StringTools.endsWith(l, module)).shift(); | ||
|
||
if (line == null) | ||
throw 'Cannot find $module in dependency dump'; | ||
|
||
if (!StringTools.endsWith(line, 'tests/misc/projects/Issue11852/$module')) { | ||
trace(module, line); | ||
throw 'Incorrect path generated for $module'; | ||
} | ||
} | ||
|
||
// Check generated path for macro generated modules | ||
check("TopLevelType_1_1"); | ||
check("foo/bar/DefinedType_1_2"); | ||
} | ||
#end | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--macro Main.init() | ||
-main Main | ||
-D dump-dependencies | ||
--interp |