Revision 223dd713a5c61d14ce676500a8cfde338bc91de4 authored by Alon Zakai on 06 March 2014, 00:45:19 UTC, committed by Alon Zakai on 06 March 2014, 00:45:19 UTC
Fix for full screen closing immediately
2 parent s 7442be3 + a7aa19e
Raw File
find_bigfuncs.py
'''
Simple tool to find big functions in a js or ll file
'''

import os, sys, re

filename = sys.argv[1]
i = 0
start = -1
curr = None
data = []
for line in open(filename):
  i += 1
  if line.startswith(('function ', 'define ')):
    start = i
    curr = line
  elif line.startswith('}') and curr:
    size = i - start
    data.append([curr, size])
    curr = None
data.sort(lambda x, y: x[1] - y[1])
print ''.join(['%6d : %s' % (x[1], x[0]) for x in data])

back to top