소스 검색

Lua : minor genlua change in trace message

Justin Donaldson 10 년 전
부모
커밋
a2d417188d
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      genlua.ml

+ 2 - 2
genlua.ml

@@ -1519,10 +1519,10 @@ let generate com =
 		newline ctx
 	);
 
-	spr ctx "--[[begin type forwards--]]"; newline ctx;
+	spr ctx "--[[begin class hoists--]]"; newline ctx;
 	List.iter (generate_type_forward ctx) com.types;
 	newline ctx;
-	spr ctx "--[[end type forwards--]]"; newline ctx;
+	spr ctx "--[[end class hoists--]]"; newline ctx;
 
 	spr ctx "--[[begin __init__ hoist --]]"; newline ctx;
 	List.iter (gen__init__hoist ctx) (List.rev ctx.inits);