예제 #1
0
        public BuiltinMethodInfo(IPythonMethodDescriptor method, PythonAnalyzer projectState)
            : base(projectState.Types[BuiltinTypeId.BuiltinMethodDescriptor], projectState)
        {
            var function = method.Function;

            _memberType  = method.MemberType;
            _function    = function;
            _returnTypes = Utils.GetReturnTypes(function, projectState);
        }
예제 #2
0
 internal DictionaryGetMethod(IPythonMethodDescriptor method, PythonAnalyzer projectState, DictionaryInfo myDict)
     : base(method, projectState)
 {
     _myDict = myDict;
 }