Пример #1
0
 public static void Emit(this CustomAttribute /*!*/ node, CodeGenerator /*!*/ codeGen, IPhpCustomAttributeProvider /*!*/ target, bool force)
 {
     node.Compiler().Emit(codeGen, target, force);
 }
Пример #2
0
 public static void AnalyzeMembers(this CustomAttribute /*!*/ node, Analyzer /*!*/ analyzer, Scope referringScope)
 {
     node.Compiler().AnalyzeMembers(analyzer, referringScope);
 }
Пример #3
0
 public static void Analyze(this CustomAttribute /*!*/ node, Analyzer /*!*/ analyzer, IPhpCustomAttributeProvider /*!*/ target, ref bool duplicateFound)
 {
     node.Compiler().Analyze(analyzer, target, ref duplicateFound);
 }
Пример #4
0
 public static DType GetResolvedType(this CustomAttribute /*!*/ node)
 {
     return(node.Compiler().ResolvedType);
 }