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
e45e4161
Commit
e45e4161
authored
Dec 15, 2017
by
ninabreznik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Loop through VariableDeclaration in ParameterList
parent
d074feb3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
contextualListener.js
src/app/editor/contextualListener.js
+13
-2
No files found.
src/app/editor/contextualListener.js
View file @
e45e4161
...
...
@@ -172,6 +172,7 @@ class ContextualListener {
}
_getInputParams
(
node
)
{
var
params
var
list
=
[]
for
(
var
i
in
node
.
children
)
{
if
(
node
.
children
[
i
].
name
===
'ParameterList'
)
{
...
...
@@ -179,9 +180,19 @@ class ContextualListener {
break
}
}
debugger
for
(
var
j
in
list
)
{
var
params
=
list
[
j
].
children
.
length
?
list
[
j
].
children
[
0
].
attributes
.
type
:
''
break
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
}
}
}
else
{
params
=
''
}
}
return
'('
+
params
+
')'
}
...
...
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