We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78c6d44 commit a13bc7eCopy full SHA for a13bc7e
emsymbolizer.py renamed to tools/emsymbolizer.py
@@ -16,11 +16,16 @@
16
import argparse
17
from dataclasses import dataclass
18
import json
19
+import os
20
import re
21
import subprocess
22
import sys
23
from typing import Optional
24
25
+__scriptdir__ = os.path.dirname(os.path.abspath(__file__))
26
+__rootdir__ = os.path.dirname(__scriptdir__)
27
+sys.path.insert(0, __rootdir__)
28
+
29
from tools import shared
30
from tools import webassembly
31
tools/maint/create_entry_points.py
@@ -55,6 +55,7 @@
55
'emprofile': 'tools/emprofile',
56
'emdwp': 'tools/emdwp',
57
'emnm': 'tools/emnm',
58
+ 'emsymbolizer': 'tools/emsymbolizer',
59
}
60
61
0 commit comments