Run formatter

This commit is contained in:
Joshua Granick
2019-07-12 12:08:09 -07:00
parent 66344c8523
commit 1188b3aa42
77 changed files with 6499 additions and 6110 deletions

View File

@@ -24,7 +24,6 @@ import sys.thread.Thread;
import neko.vm.Thread;
#end
#end
class FlashPlatform extends PlatformTarget
{
private var embedded:Bool;
@@ -59,9 +58,9 @@ class FlashPlatform extends PlatformTarget
public override function display():Void
{
if (project.targetFlags.exists ("output-file"))
if (project.targetFlags.exists("output-file"))
{
Sys.println (Path.combine(targetDirectory, "bin/" + project.app.file + ".swf"));
Sys.println(Path.combine(targetDirectory, "bin/" + project.app.file + ".swf"));
}
else
{
@@ -155,11 +154,12 @@ class FlashPlatform extends PlatformTarget
if (traceEnabled)
{
#if neko
Thread.create(function() {
Thread.create(function()
{
#end
FlashHelper.run(project, destination, targetPath);
// Sys.exit (0);
FlashHelper.run(project, destination, targetPath);
// Sys.exit (0);
#if neko
});