Esempio n. 1
0
        void CheckLabel(Instruction instruction)
        {
            if (!annotations.IsAnnotated(instruction, Annotation.Labeled))
            {
                return;
            }

            current_label = annotations.GetData <string> (instruction);
        }
Esempio n. 2
0
 bool IsSkipped(Instruction instruction)
 {
     return(annotations.IsAnnotated(instruction, Annotation.Skip));
 }