CreateCallSiteField() публичный Метод

public CreateCallSiteField ( string namehint ) : SynthesizedFieldSymbol
namehint string
Результат Pchp.CodeAnalysis.Symbols.SynthesizedFieldSymbol
Пример #1
0
            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);
            }
Пример #2
0
            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);
            }