/IronPython_Main/Tools/IronStudio/IronPythonToolsCore/PyAnalysis/Values/UserDefinedInfo.cs
# · C# · 37 lines · 19 code · 5 blank · 13 comment · 0 complexity · ad5d31eb271b7b6c6bfb215cb118d7c0 MD5 · raw file
- /* ****************************************************************************
- *
- * Copyright (c) Microsoft Corporation.
- *
- * This source code is subject to terms and conditions of the Apache License, Version 2.0. A
- * copy of the license can be found in the License.html file at the root of this distribution. If
- * you cannot locate the Apache License, Version 2.0, please send an email to
- * ironpy@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
- * by the terms of the Apache License, Version 2.0.
- *
- * You must not remove this notice, or any other, from this software.
- *
- * ***************************************************************************/
-
- using System;
- using System.Collections.Generic;
- using IronPython.Compiler.Ast;
- using Microsoft.PyAnalysis.Interpreter;
-
- namespace Microsoft.PyAnalysis.Values {
- internal class UserDefinedInfo : Namespace {
- internal readonly AnalysisUnit _analysisUnit;
- private VariableDef[] _parameters;
-
- protected UserDefinedInfo(AnalysisUnit analysisUnit) {
- _analysisUnit = analysisUnit;
- }
-
- public VariableDef[] ParameterTypes {
- get { return _parameters; }
- }
-
- public void SetParameters(VariableDef[] parameters) {
- _parameters = parameters;
- }
- }
- }