SWFProcessing.SWFModeller.ABC.AbcCode.MarkCodeAsTampered C# (CSharp) Method

MarkCodeAsTampered() private method

At first glance, this does the same as Disassemble(). The difference is that merely disassembling the code doesn't clear out the bytecode that was disassembled. Marking code as tampered disassembles it and then discards the source bytecode, forcing it to require reassembly.
private MarkCodeAsTampered ( ) : void
return void
        internal void MarkCodeAsTampered()
        {
            foreach (Method m in this.Methods)
            {
                m.Tampered = true;
            }

            foreach (AS3ClassDef clazz in this.Classes)
            {
                clazz.MarkCodeAsTampered();
            }
        }