コード例 #1
0
ファイル: CallSiteRule.cs プロジェクト: gaybro8777/ironruby
 internal CallSiteRule(Expression binding, T target, TemplateData <T> template)
 {
     _binding  = binding;
     RuleSet   = new SmallRuleSet <T>(target, new CallSiteRule <T>[] { this });
     _template = template;
 }
コード例 #2
0
ファイル: CallSiteRule.cs プロジェクト: gaybro8777/ironruby
 internal CallSiteRule(Expression binding)
 {
     _binding = binding;
     RuleSet  = new SmallRuleSet <T>(new[] { this });
 }