Added delta builds of Matlab executables. Imgproc module now compiling

This commit is contained in:
hbristow
2013-06-27 00:25:48 -07:00
parent 136f205fb3
commit bb56ac4ae6
7 changed files with 36 additions and 9 deletions

View File

@@ -1,5 +1,6 @@
from string import join
from textwrap import fill
from filters import *
class ParseTree(object):
def __init__(self, namespaces=None):
@@ -52,7 +53,7 @@ class Translator(object):
return self.translateClass(defn)
# --- function ---
# functions either need to have input arguments, or not uppercase names
elif defn[3] or not self.translateName(defn[0]).isupper():
elif defn[3] or not self.translateName(defn[0]).split('_')[0].isupper():
return self.translateFunction(defn)
# --- constant ---
else: