Skip to content

Commit 15b1337

Browse files
committed
Remove now unused definitions.
1 parent b01689c commit 15b1337

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

skulpt.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,6 @@ def bowerProperty(name):
2525
# Symbolic constants for the project structure.
2626
TEST_DIR = 'test'
2727

28-
# Symbolic constants for the naming of distribution files.
29-
STANDARD_NAMING = True
30-
PRODUCT_NAME = bowerProperty("name")
31-
OUTFILE_REG = "{0}.js".format(PRODUCT_NAME) if STANDARD_NAMING else "skulpt-uncomp.js"
32-
OUTFILE_MIN = "{0}.min.js".format(PRODUCT_NAME) if STANDARD_NAMING else "skulpt.js"
33-
OUTFILE_LIB = "{0}-stdlib.js".format(PRODUCT_NAME) if STANDARD_NAMING else "builtin.js"
34-
OUTFILE_MAP = "{0}-linemap.txt".format(PRODUCT_NAME) if STANDARD_NAMING else "linemap.txt"
35-
OUTFILE_DEBUGGER = "debugger.js"
36-
37-
# Symbolic constants for file types.
38-
FILE_TYPE_TEST = 'test'
39-
40-
TestFiles = [
41-
"{0}/sprintf.js".format(TEST_DIR),
42-
"{0}/test.js".format(TEST_DIR)
43-
]
44-
4528
if sys.platform == "win32":
4629
nul = "nul"
4730
crlfprog = os.path.join(os.path.split(sys.executable)[0], "Tools/Scripts/crlf.py")

0 commit comments

Comments
 (0)