# File DelimScanner.rb, line 572
        def skipCodeblock( *args )
                startPos = self.pointer

                match = scanCodeblock( *args )

                return nil unless match
                return match.length + prefix.length
        ensure
                debugMsg( 2, "Resetting scan pointer." )
                self.pointer = startPos
        end