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
06d35836
Commit
06d35836
authored
Sep 18, 2019
by
aniket-engg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
separate function
parent
30b64261
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
29 deletions
+35
-29
txFormat.js
remix-lib/src/execution/txFormat.js
+35
-29
No files found.
remix-lib/src/execution/txFormat.js
View file @
06d35836
...
@@ -180,35 +180,7 @@ module.exports = {
...
@@ -180,35 +180,7 @@ module.exports = {
}
else
{
}
else
{
try
{
try
{
if
(
params
.
length
>
0
)
{
if
(
params
.
length
>
0
)
{
// Segregate params textbox string with respect to comma (,)
funArgs
=
this
.
parseFunctionParams
(
params
)
params
=
params
.
split
(
','
)
for
(
let
i
=
0
;
i
<
params
.
length
;
i
++
)
{
let
param
=
params
[
i
].
trim
()
// Check if param starts with " , it may be string, address etc.
if
(
param
.
charAt
(
0
)
===
'"'
)
{
// Check if param completes in one location by looking for end quote (case: address data type)
if
(
param
.
charAt
(
param
.
length
-
1
)
===
'"'
)
{
funArgs
.
push
(
param
.
slice
(
1
,
param
.
length
-
1
))
}
else
{
let
lastIndex
=
false
let
paramStr
=
param
.
slice
(
1
,
param
.
length
)
// For a paramter got divided in multiple location(case: string data type containing comma(,))
for
(
let
j
=
i
+
1
;
!
lastIndex
;
j
++
)
{
// Check if end quote is reached
if
(
params
[
j
].
charAt
(
params
[
j
].
length
-
1
)
===
'"'
)
{
paramStr
+=
','
+
params
[
j
].
slice
(
0
,
params
[
j
].
length
-
1
)
i
=
j
funArgs
.
push
(
paramStr
)
lastIndex
=
true
}
else
{
paramStr
+=
','
+
params
[
j
]
}
}
}
}
else
{
funArgs
.
push
(
param
)
}
}
}
}
}
catch
(
e
)
{
}
catch
(
e
)
{
callback
(
'Error encoding arguments: '
+
e
)
callback
(
'Error encoding arguments: '
+
e
)
...
@@ -412,6 +384,40 @@ module.exports = {
...
@@ -412,6 +384,40 @@ module.exports = {
}
}
}
}
return
{}
return
{}
},
parseFunctionParams
:
function
(
params
)
{
let
args
=
[]
// Segregate params textbox string with respect to comma (,)
params
=
params
.
split
(
','
)
for
(
let
i
=
0
;
i
<
params
.
length
;
i
++
)
{
let
param
=
params
[
i
].
trim
()
// Check if param starts with " , it may be string, address etc.
if
(
param
.
charAt
(
0
)
===
'"'
)
{
// Check if param completes in one location by looking for end quote (case: address data type)
if
(
param
.
charAt
(
param
.
length
-
1
)
===
'"'
)
{
args
.
push
(
param
.
slice
(
1
,
param
.
length
-
1
))
}
else
{
let
lastIndex
=
false
let
paramStr
=
param
.
slice
(
1
,
param
.
length
)
// For a paramter got divided in multiple location(case: string data type containing comma(,))
for
(
let
j
=
i
+
1
;
!
lastIndex
;
j
++
)
{
// Check if end quote is reached
if
(
params
[
j
].
charAt
(
params
[
j
].
length
-
1
)
===
'"'
)
{
paramStr
+=
','
+
params
[
j
].
slice
(
0
,
params
[
j
].
length
-
1
)
i
=
j
args
.
push
(
paramStr
)
lastIndex
=
true
}
else
{
paramStr
+=
','
+
params
[
j
]
}
}
}
}
else
{
args
.
push
(
param
)
}
}
return
args
}
}
}
}
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