Ver código fonte

[python] made python.Syntax.pythonCode return untyped so analyzer skips it.

Dan Korostelev 10 anos atrás
pai
commit
6e2786206b
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      std/python/Syntax.hx

+ 1 - 1
std/python/Syntax.hx

@@ -47,7 +47,7 @@ extern class Syntax {
 	@:noUsing
 	macro public static function pythonCode(b:ExprOf<String>, rest:Array<Expr>):Expr {
 		if (rest == null) rest = [];
-		return macro @:pos(Context.currentPos()) $self._pythonCode($b, $a{rest});
+		return macro @:pos(Context.currentPos()) untyped $self._pythonCode($b, $a{rest});
 	};
 
 	#if !macro