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
a6ce24a1
Commit
a6ce24a1
authored
Dec 15, 2016
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add mapping type
parent
b2760e67
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
1 deletion
+29
-1
decodeInfo.js
src/solidity/decodeInfo.js
+16
-1
Mapping.js
src/solidity/types/Mapping.js
+13
-0
No files found.
src/solidity/decodeInfo.js
View file @
a6ce24a1
...
...
@@ -10,6 +10,17 @@ var StringType = require('./types/StringType')
var
StructType
=
require
(
'./types/Struct'
)
var
IntType
=
require
(
'./types/Int'
)
var
UintType
=
require
(
'./types/Uint'
)
var
MappingType
=
require
(
'./types/Mapping'
)
/**
* mapping decode the given @arg type
*
* @param {String} type - type given by the AST
* @return {Object} returns decoded info about the current type: { storageBytes, typeName}
*/
function
Mapping
(
type
)
{
return
new
MappingType
()
}
/**
* Uint decode the given @arg type
...
...
@@ -212,6 +223,9 @@ function typeClass (fullType) {
if
(
fullType
.
indexOf
(
']'
)
!==
-
1
)
{
return
'array'
}
if
(
fullType
.
indexOf
(
'mapping'
)
===
0
)
{
return
'mapping'
}
if
(
fullType
.
indexOf
(
' '
)
!==
-
1
)
{
fullType
=
fullType
.
split
(
' '
)[
0
]
}
...
...
@@ -238,7 +252,8 @@ function parseType (type, stateDefinitions, contractName) {
'string'
:
String
,
'struct'
:
Struct
,
'int'
:
Int
,
'uint'
:
Uint
'uint'
:
Uint
,
'mapping'
:
Mapping
}
var
currentType
=
typeClass
(
type
)
if
(
currentType
===
null
)
{
...
...
src/solidity/types/Mapping.js
0 → 100644
View file @
a6ce24a1
'use strict'
function
Mapping
()
{
this
.
storageSlots
=
1
this
.
storageBytes
=
32
this
.
typeName
=
'mapping'
}
Mapping
.
prototype
.
decodeFromStorage
=
function
(
location
,
storageContent
)
{
return
'<not implemented>'
}
module
.
exports
=
Mapping
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