You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
439 B

#!/usr/bin/python
#
# Fix the single regexp syntax error from Emscripten output.
import os
import sys
for line in sys.stdin:
if len(line) > 1 and line[-1] == '\n':
line = line[:-1]
if line == r""" if (/<?{ ?[^}]* ?}>?/.test(type)) return true; // { i32, i8 } etc. - anonymous struct types""":
print(r""" if (/<?\{ ?[^}]* ?\}>?/.test(type)) return true; // { i32, i8 } etc. - anonymous struct types""")
else:
print(line)