1 write to Info
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\ArgumentObject.cs (1)
24Info = info;
15 references to Info
Microsoft.CSharp (15)
Microsoft\CSharp\RuntimeBinder\CSharpIsEventBinder.cs (1)
25=> SymbolTable.PopulateSymbolTableWithName(Name, null, arguments[0].Info.IsStaticType ? arguments[0].Value as Type : arguments[0].Type);
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (14)
276throw Error.BindStaticRequiresType(arguments[0].Info.Name); 353CSharpArgumentInfo info = arguments[i].Info; 448if (argument.Info.LiteralConstant) 452if (argument.Info.UseCompileTimeType) 471if (!argument.Info.UseCompileTimeType && argument.Value == null) 477arg = CreateLocal(argument.Type, argument.Info.IsOut, local); 482if (argument.Info.NamedArgument) 484Debug.Assert(argument.Info.Name != null); 485arg = ExprFactory.CreateNamedArgumentSpecification(NameManager.Add(argument.Info.Name), arg); 503if (!argument.Info.UseCompileTimeType && argument.Value != null) 700if (!arguments[0].Info.UseCompileTimeType && arguments[0].Value == null) 1110Expr callingObject = argument.Info.IsStaticType ? 1112CreateLocal(argument.Type, argument.Info.IsOut, local); 1114if (!argument.Info.UseCompileTimeType && argument.Value == null)