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)
284throw Error.BindStaticRequiresType(arguments[0].Info.Name); 364CSharpArgumentInfo info = arguments[i].Info; 463if (argument.Info.LiteralConstant) 467if (argument.Info.UseCompileTimeType) 486if (!argument.Info.UseCompileTimeType && argument.Value == null) 492arg = CreateLocal(argument.Type, argument.Info.IsOut, local); 497if (argument.Info.NamedArgument) 499Debug.Assert(argument.Info.Name != null); 500arg = ExprFactory.CreateNamedArgumentSpecification(NameManager.Add(argument.Info.Name), arg); 518if (!argument.Info.UseCompileTimeType && argument.Value != null) 721if (!arguments[0].Info.UseCompileTimeType && arguments[0].Value == null) 1136Expr callingObject = argument.Info.IsStaticType ? 1138CreateLocal(argument.Type, argument.Info.IsOut, local); 1140if (!argument.Info.UseCompileTimeType && argument.Value == null)