CreateCallSiteField() public method

public CreateCallSiteField ( string namehint ) : SynthesizedFieldSymbol
namehint string
return Pchp.CodeAnalysis.Symbols.SynthesizedFieldSymbol
            internal CallSiteData(DynamicOperationFactory factory, string fldname = null)
            {
                _factory = factory;

                _target = new SubstitutedFieldSymbol(factory.CallSite_T, factory.CallSite_T_Target); // AsMember // we'll change containing type later once we know, important to have Substitued symbol before calling it
                _fld    = factory.CreateCallSiteField(fldname ?? string.Empty);
            }
            internal CallSiteData(DynamicOperationFactory factory, string fldname = null)
            {
                _factory = factory;

                _target = new SubstitutedFieldSymbol(factory.CallSite_T, factory.CallSite_T_Target); // AsMember // we'll change containing type later once we know, important to have Substitued symbol before calling it
                _fld = factory.CreateCallSiteField(fldname ?? string.Empty);
            }