Esempio n. 1
0
 public static int Count(this CustomAttributes/*!*/node, DType/*!*/ attributeType, CustomAttribute.TargetSelectors selector)
 {
     return node.Compiler().Count(node, attributeType, selector);
 }
Esempio n. 2
0
 public static void Emit(this CustomAttributes/*!*/node, CodeGenerator/*!*/ codeGenerator, IPhpCustomAttributeProvider/*!*/ target)
 {
     node.Compiler().Emit(node, codeGenerator, target);
 }
Esempio n. 3
0
 public static void Analyze(this CustomAttributes/*!*/node, Analyzer/*!*/ analyzer, IPhpCustomAttributeProvider/*!*/ target)
 {
     node.Compiler().Analyze(node, analyzer, target);
 }
Esempio n. 4
0
 public static void AnalyzeMembers(this CustomAttributes/*!*/node, Analyzer/*!*/ analyzer, Scope referringScope)
 {
     node.Compiler().AnalyzeMembers(node, analyzer, referringScope);
 }
Esempio n. 5
0
 public static void Emit(this CustomAttribute/*!*/node, CodeGenerator/*!*/ codeGen, IPhpCustomAttributeProvider/*!*/ target, bool force)
 {
     node.Compiler().Emit(codeGen, target, force);
 }
Esempio n. 6
0
 public static void Analyze(this CustomAttribute/*!*/node, Analyzer/*!*/ analyzer, IPhpCustomAttributeProvider/*!*/ target, ref bool duplicateFound)
 {
     node.Compiler().Analyze(analyzer, target, ref duplicateFound);
 }
Esempio n. 7
0
 public static DType GetResolvedType(this CustomAttribute/*!*/node)
 {
     return node.Compiler().ResolvedType;
 }