Skip to content

Commit

Permalink
change var name
Browse files Browse the repository at this point in the history
  • Loading branch information
ianharrigan committed Aug 28, 2022
1 parent 83f3567 commit 82f83fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions haxe/ui/macros/ModuleMacros.hx
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ class ModuleMacros {
}
}

for (is in m.actionInputSources) {
var className = is.className;
for (inputSource in m.actionInputSources) {
var className = inputSource.className;
var parts = className.split(".");
var name:String = parts.pop();
var t:TypePath = {
Expand Down

0 comments on commit 82f83fd

Please sign in to comment.