mirror of
https://github.com/denoland/deno.git
synced 2025-01-08 15:19:40 -05:00
format
This commit is contained in:
parent
4dbe5eabe9
commit
7e3d9f8f2b
2 changed files with 5 additions and 3 deletions
|
@ -78,5 +78,8 @@ test(function consoleTestStringifyCircular() {
|
||||||
assertEqual(stringify(function f() {}), "[Function: f]");
|
assertEqual(stringify(function f() {}), "[Function: f]");
|
||||||
assertEqual(stringify(nestedObj), nestedObjExpected);
|
assertEqual(stringify(nestedObj), nestedObjExpected);
|
||||||
assertEqual(stringify(JSON), "{}");
|
assertEqual(stringify(JSON), "{}");
|
||||||
assertEqual(stringify(console), "Console { printFunc: [Function], debug: [Function: log], info: [Function: log], error: [Function: warn] }");
|
assertEqual(
|
||||||
|
stringify(console),
|
||||||
|
"Console { printFunc: [Function], debug: [Function: log], info: [Function: log], error: [Function: warn] }"
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
|
@ -28,8 +28,7 @@ def main():
|
||||||
def write_lastchange():
|
def write_lastchange():
|
||||||
run([
|
run([
|
||||||
sys.executable, "build/util/lastchange.py", "-o",
|
sys.executable, "build/util/lastchange.py", "-o",
|
||||||
"build/util/LASTCHANGE", "--source-dir", root_path,
|
"build/util/LASTCHANGE", "--source-dir", root_path, "--filter="
|
||||||
"--filter="
|
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue