|
|
@@ -657,7 +657,7 @@ namespace Mono.CSharp
|
|
|
return is_checked ? SLE.Expression.NegateChecked (expr) : SLE.Expression.Negate (expr);
|
|
|
case Operator.LogicalNot:
|
|
|
return SLE.Expression.Not (expr);
|
|
|
-#if NET_4_0 || MONODROID
|
|
|
+#if NET_4_0 || MOBILE_DYNAMIC
|
|
|
case Operator.OnesComplement:
|
|
|
return SLE.Expression.OnesComplement (expr);
|
|
|
#endif
|
|
|
@@ -1340,7 +1340,7 @@ namespace Mono.CSharp
|
|
|
}
|
|
|
|
|
|
|
|
|
-#if NET_4_0 || MONODROID
|
|
|
+#if NET_4_0 || MOBILE_DYNAMIC
|
|
|
public override SLE.Expression MakeExpression (BuilderContext ctx)
|
|
|
{
|
|
|
var target = ((RuntimeValueExpression) expr).MetaObject.Expression;
|
|
|
@@ -1922,7 +1922,7 @@ namespace Mono.CSharp
|
|
|
temp_storage.Release (ec);
|
|
|
}
|
|
|
|
|
|
-#if (NET_4_0 || MONODROID) && !STATIC
|
|
|
+#if (NET_4_0 || MOBILE_DYNAMIC) && !STATIC
|
|
|
public override SLE.Expression MakeExpression (BuilderContext ctx)
|
|
|
{
|
|
|
return SLE.Expression.Default (type.GetMetaInfo ());
|
|
|
@@ -7421,7 +7421,7 @@ namespace Mono.CSharp
|
|
|
return data;
|
|
|
}
|
|
|
|
|
|
-#if NET_4_0 || MONODROID
|
|
|
+#if NET_4_0 || MOBILE_DYNAMIC
|
|
|
public override SLE.Expression MakeExpression (BuilderContext ctx)
|
|
|
{
|
|
|
#if STATIC
|
|
|
@@ -9618,7 +9618,7 @@ namespace Mono.CSharp
|
|
|
|
|
|
public SLE.Expression MakeAssignExpression (BuilderContext ctx, Expression source)
|
|
|
{
|
|
|
-#if NET_4_0 || MONODROID
|
|
|
+#if NET_4_0 || MOBILE_DYNAMIC
|
|
|
return SLE.Expression.ArrayAccess (ea.Expr.MakeExpression (ctx), MakeExpressionArguments (ctx));
|
|
|
#else
|
|
|
throw new NotImplementedException ();
|
|
|
@@ -9797,7 +9797,7 @@ namespace Mono.CSharp
|
|
|
#else
|
|
|
var value = new[] { source.MakeExpression (ctx) };
|
|
|
var args = Arguments.MakeExpression (arguments, ctx).Concat (value);
|
|
|
-#if NET_4_0 || MONODROID
|
|
|
+#if NET_4_0 || MOBILE_DYNAMIC
|
|
|
return SLE.Expression.Block (
|
|
|
SLE.Expression.Call (InstanceExpression.MakeExpression (ctx), (MethodInfo) Setter.GetMetaInfo (), args),
|
|
|
value [0]);
|