Ejemplo n.º 1
0
        static FieldInfo GetBackingField(MethodInfo method, ILPattern pattern)
        {
            var result = ILPattern.Match(method, pattern);

            if (!result.success)
            {
                throw new ArgumentException();
            }

            object value;

            if (!result.TryGetData(FieldPattern.FieldKey, out value))
            {
                throw new InvalidOperationException();
            }

            return((FieldInfo)value);
        }
Ejemplo n.º 2
0
        public static MatchContext Match(MethodBase method, ILPattern pattern)
        {
            if (method == null)
            {
                throw new ArgumentNullException("method");
            }
            if (pattern == null)
            {
                throw new ArgumentNullException("pattern");
            }

            var instructions = method.GetInstructions();

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

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

            pattern.Match(context);
            return(context);
        }
Ejemplo n.º 3
0
 static ILPattern Field(OpCode opcode)
 {
     return(new FieldPattern(ILPattern.OpCode(opcode)));
 }
Ejemplo n.º 4
0
 public FieldPattern(ILPattern pattern)
 {
     _pattern = pattern;
 }
Ejemplo n.º 5
0
 public static ILPattern Either(ILPattern a, ILPattern b)
 {
     return(new EitherPattern(a, b));
 }
Ejemplo n.º 6
0
 public OptionalPattern(ILPattern optional)
 {
     _pattern = optional;
 }
Ejemplo n.º 7
0
 public static ILPattern Optional(ILPattern pattern)
 {
     return(new OptionalPattern(pattern));
 }
Ejemplo n.º 8
0
 public EitherPattern(ILPattern a, ILPattern b)
 {
     _a = a;
     _b = b;
 }