Exemple #1
0
        static FieldInfo GetBackingField(MethodInfo method, ILPattern pattern)
        {
            //Debug.WriteLine("Enter on Reflection.EMIT and works!");
            var result = ILPattern.Match(method, pattern);

            if (!result.success)
            {
                throw new NotSupportedException();
            }
            // Debug.WriteLine("Exit on Reflection.EMIT and works!");
            return(result.field);
        }
Exemple #2
0
        public static MatchContext Match(MethodBase method, ILPattern pattern)
        {
            var instructions = method.GetInstructions();

            if (instructions.Count == 0)
            {
                throw new ArgumentException();
            }

            var context = new MatchContext(instructions[0]);

            pattern.Match(context);
            return(context);
        }
Exemple #3
0
 public OptionalPattern(ILPattern optional)
 {
     this.pattern = optional;
 }
Exemple #4
0
 public static ILPattern Optional(ILPattern pattern)
 {
     return(new OptionalPattern(pattern));
 }
Exemple #5
0
 public FieldPattern(ILPattern pattern)
 {
     this.pattern = pattern;
 }
Exemple #6
0
 public EitherPattern(ILPattern a, ILPattern b)
 {
     this.a = a;
     this.b = b;
 }
Exemple #7
0
 public static ILPattern Either(ILPattern a, ILPattern b)
 {
     return(new EitherPattern(a, b));
 }