ソースを参照

Lua : FDynamic needs colon access for methods

Justin Donaldson 10 年 前
コミット
316a60cc51
1 ファイル変更1 行追加1 行削除
  1. 1 1
      genlua.ml

+ 1 - 1
genlua.ml

@@ -375,7 +375,7 @@ let rec gen_call ctx e el in_value =
 		spr ctx ") end )(";
 		gen_value ctx e;
 		spr ctx ")";
-	| TField (e, ((FInstance _ | FAnon _) as ef)), el ->
+	| TField (e, ((FInstance _ | FAnon _ | FDynamic _) as ef)), el ->
 		gen_value ctx e;
 		spr ctx ":";
 		print ctx "%s" (field_name ef);