Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
fc2e5b14
Commit
fc2e5b14
authored
Sep 07, 2016
by
Alex Beregszaszi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove dead parameter
parent
1297bac1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
app.js
src/app.js
+1
-1
compiler.js
src/app/compiler.js
+1
-1
No files found.
src/app.js
View file @
fc2e5b14
...
@@ -407,7 +407,7 @@ var run = function () {
...
@@ -407,7 +407,7 @@ var run = function () {
}
}
var
executionContext
=
new
ExecutionContext
();
var
executionContext
=
new
ExecutionContext
();
var
compiler
=
new
Compiler
(
editor
,
handleGithubCall
,
updateFiles
);
var
compiler
=
new
Compiler
(
editor
,
handleGithubCall
);
var
formalVerification
=
new
FormalVerification
(
$
(
'#verificationView'
),
compiler
.
event
);
var
formalVerification
=
new
FormalVerification
(
$
(
'#verificationView'
),
compiler
.
event
);
var
transactionDebugger
=
new
Debugger
(
'#debugger'
,
editor
,
compiler
,
executionContext
.
event
,
swicthToFile
);
var
transactionDebugger
=
new
Debugger
(
'#debugger'
,
editor
,
compiler
,
executionContext
.
event
,
swicthToFile
);
...
...
src/app/compiler.js
View file @
fc2e5b14
...
@@ -10,7 +10,7 @@ var EventManager = require('../lib/eventManager');
...
@@ -10,7 +10,7 @@ var EventManager = require('../lib/eventManager');
/*
/*
trigger compilationFinished, compilerLoaded, compilationStarted
trigger compilationFinished, compilerLoaded, compilationStarted
*/
*/
function
Compiler
(
editor
,
handleGithubCall
,
updateFiles
)
{
function
Compiler
(
editor
,
handleGithubCall
)
{
var
self
=
this
;
var
self
=
this
;
this
.
event
=
new
EventManager
();
this
.
event
=
new
EventManager
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment