Esempio n. 1
0
 public static bool IsArithmeticSupported(Compiler.Type type) =>
 type.Info == IntTypeInfo || type.Info == FloatTypeInfo;
Esempio n. 2
0
 public ObjectCreation(TypeInfo typeInfo, Invocation invocation)
 {
     Type     = new Compiler.Type(typeInfo);
     Children = new List <Node>(invocation.Parameters);
 }