コード例 #1
0
        public CodeDomArg(CodeExpression codeExpression, IScopeData scope)
        {
            MethodIdentifier = Guid.NewGuid().ToString("N");
            CodeExpression   = codeExpression;
            Scope            = scope;

            ParentMemberDefinitions = new CodeTypeMemberCollection();
            ParentStatements        = new CodeStatementCollection();
        }
コード例 #2
0
ファイル: Scope.cs プロジェクト: yonglehou/pickaxe
 public void Register(string variable, IScopeData data)
 {
     _scope[variable] = data;
 }