mirror of https://github.com/svaarala/duktape.git
Sami Vaarala
11 years ago
1 changed files with 17 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||
#!/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) |
|||
|
Loading…
Reference in new issue