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
ccdd9412
Commit
ccdd9412
authored
Dec 15, 2017
by
ninabreznik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor _getInputParams
parent
e45e4161
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
15 deletions
+8
-15
contextualListener.js
src/app/editor/contextualListener.js
+8
-15
No files found.
src/app/editor/contextualListener.js
View file @
ccdd9412
...
...
@@ -172,29 +172,22 @@ class ContextualListener {
}
_getInputParams
(
node
)
{
var
params
var
list
=
[]
var
params
=
[]
for
(
var
i
in
node
.
children
)
{
if
(
node
.
children
[
i
].
name
===
'ParameterList'
)
{
list
.
push
(
node
.
children
[
i
])
var
target
=
node
.
children
[
i
]
break
}
}
debugger
for
(
var
j
in
list
)
{
if
(
list
[
j
].
children
.
length
)
{
var
children
=
list
[
j
].
children
for
(
var
k
in
children
)
{
if
(
children
[
k
].
name
===
'VariableDeclaration'
)
{
params
=
children
[
k
].
attributes
.
type
break
}
if
(
target
)
{
var
children
=
target
.
children
for
(
var
j
in
children
)
{
if
(
children
[
j
].
name
===
'VariableDeclaration'
)
{
params
.
push
(
children
[
j
].
attributes
.
type
.
split
(
' '
)[
0
])
}
}
else
{
params
=
''
}
}
return
'('
+
params
+
')'
return
'('
+
params
.
toString
()
+
')'
}
}
...
...
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