Exemple #1
0
        public HighMethod(HighMethod baseMethod, TagRepository repo, TypeSpecTag[] argTypes)
        {
            m_static = baseMethod.m_static;
            m_methodSignature = baseMethod.m_methodSignature.Instantiate(repo, argTypes);

            m_methodBody = baseMethod.m_methodBody;
            m_methodDeclTag = baseMethod.m_methodDeclTag;
            m_isInternal = baseMethod.m_isInternal;
        }
Exemple #2
0
        public HighMethod(bool isStatic, MethodSignatureTag methodSignature, HighMethodBody methodBody,
            MethodDeclTag methodDeclTag, bool isInternal)
        {
            m_static = isStatic;
            m_methodSignature = methodSignature;

            m_methodBody = methodBody;
            m_methodDeclTag = methodDeclTag;
            m_isInternal = isInternal;
        }