Skip to content

Commit

Permalink
Merge pull request #703 from bryan-m-hughes/timob-5888
Browse files Browse the repository at this point in the history
[TIMOB-5888] Commented out the expand ti includes for now until we can i...
  • Loading branch information
donthorp committed Nov 15, 2011
2 parents a40019e + ac045b8 commit 0428ae4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions support/mobileweb/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def extract_tokens(self,sym,line):
return tokens

def expand_ti_includes(self,line,filename):
idx = line.find('Ti.include')
'''idx = line.find('Ti.include')
if idx!=-1:
srcs = line[idx+11:-1]
for srcQ in srcs.split(','):
Expand All @@ -345,7 +345,7 @@ def expand_ti_includes(self,line,filename):
print "[ERROR] Cannot find include file at: %s" % src_path
sys.exit(1)
source = Compiler.make_function_from_file(src_path,self)
self.ti_includes[src] = source
self.ti_includes[src] = source'''

def compile_js(self,file_contents,fn):
contents = ""
Expand Down

0 comments on commit 0428ae4

Please sign in to comment.