1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
/*
* Copyright (C)2005-2012 Haxe Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
package python;
#if macro
import haxe.macro.Expr;
import haxe.macro.Context;
import haxe.macro.ExprTools;
#end
@:noPackageRestrict
@:analyzer(no_simplification)
extern class Syntax {
#if macro
static var self = macro python.Syntax;
#end
@:noUsing macro public static function importModule (module:String):haxe.macro.Expr {
return macro ($self.pythonCode($v{"import " + module}):Void);
}
@:noUsing macro public static function importAs (module:String, className : String):haxe.macro.Expr {
var n = className.split(".").join("_");
var e = "import " + module + " as " + n;
return macro ($self.pythonCode($v{e}):Void);
}
@:noUsing
macro public static function newInstance (c:Expr, params:Array<Expr>):haxe.macro.Expr {
return macro $self._newInstance($c, $a{params});
}
static function _newInstance(c:Dynamic, args:Array<Dynamic>):Dynamic { return null; }
@:noUsing
public static function isIn(a:Dynamic, b:Dynamic):Bool { return false; }
@:noUsing
public static function delete(a:Dynamic):Void { }
@:noUsing
public static function binop(a:Dynamic, op:String, b:Dynamic):Dynamic { return null; }
@:noUsing
public static function assign(a:Dynamic, b:Dynamic):Void { }
@:noUsing
macro public static function pythonCode(b:ExprOf<String>, rest:Array<Expr>):Expr {
if (rest == null) rest = [];
return macro @:pos(Context.currentPos()) untyped $self._pythonCode($b, $a{rest});
};
#if !macro
@:noUsing
public static function _pythonCode<T>(b:String, args:Array<Dynamic>):T { return null; };
#end
@:noUsing
macro public static function arrayAccess(x:Expr, rest:Array<Expr>):ExprOf<Dynamic> {
return macro $self._arrayAccess($x, $a{rest});
}
@:noUsing
macro public static function arrayAccessWithTrailingColon(x:Expr, rest:Array<Expr>):ExprOf<Dynamic> {
return macro $self._arrayAccess($x, $a{rest}, true);
}
static function _arrayAccess(a:Dynamic, args:Array<Dynamic>, ?trailingColon:Bool = false):Dynamic { return null; }
@:noUsing
public static function arraySet(a:Dynamic, i:Dynamic, v:Dynamic):Dynamic { return null; }
static function _foreach(id:Dynamic, it:Dynamic, block:Dynamic):Dynamic { return null; }
@:noUsing
macro public static function foreach<T>(v:Expr, it:Expr, b:Expr):haxe.macro.Expr {
var id = switch (v.expr) {
case EConst(CIdent(x)): x;
case _ : Context.error("unexpected " + ExprTools.toString(v) + ": const ident expected", v.pos);
}
var iter = try {
var it = macro ($it.__iter__() : python.NativeIterator.NativeIteratorRaw<T>);
Context.typeof(it);
it;
} catch (e:Dynamic) {
macro ($it : python.NativeIterable.NativeIterableRaw<T>);
}
return macro {
var $id = null;
$self._foreach($v, $it, cast $b);
}
}
@:noUsing macro public static function importFromAs (from:String, module:String, className : String):haxe.macro.Expr {
var n = className.split(".").join("_");
var e = "from " + from + " import " + module + " as " + n;
return macro ($self.pythonCode($v{e}):Void);
}
@:noUsing
macro public static function callField(o:Expr, field:ExprOf<String>, params:Array<Expr>):haxe.macro.Expr {
return macro @:pos(o.pos) $self.call($self.field($o, $field), $a{params});
}
static function call(e:Dynamic, args:Array<Dynamic>):Dynamic { return null; }
@:noUsing
public static function field (o:Dynamic, field:String):Dynamic { return null; }
@:noUsing
macro public static function tuple(args:Array<Expr>):Dynamic {
var args = macro $a{args};
return macro $self._tuple($args);
}
static function _tuple(args:Array<Dynamic>):Dynamic { return null; }
@:noUsing
public static function varArgs(args:Array<Dynamic>):Dynamic { return null; }
macro public static function callNamedUntyped (e:Expr, args:Expr):Expr {
return macro @:pos(e.pos) $self._callNamedUntyped($e, $args);
}
static function _callNamedUntyped(e:Dynamic, args:Dynamic):Dynamic { return null; }
public static function opPow(a:Int, b:Int):Int { return 0; }
}
|