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
2a98b377
Commit
2a98b377
authored
Feb 11, 2021
by
aniket-engg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
linting for remix-debug done
parent
336ff739
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
8 deletions
+9
-8
.eslintrc
libs/remix-debug/.eslintrc
+1
-1
breakpointManager.ts
libs/remix-debug/src/code/breakpointManager.ts
+0
-0
debugger.ts
libs/remix-debug/src/debugger/debugger.ts
+1
-1
internalCallTree.ts
libs/remix-debug/src/solidity-decoder/internalCallTree.ts
+0
-0
RefType.ts
libs/remix-debug/src/solidity-decoder/types/RefType.ts
+4
-4
ValueType.ts
libs/remix-debug/src/solidity-decoder/types/ValueType.ts
+2
-2
traceCache.ts
libs/remix-debug/src/trace/traceCache.ts
+1
-0
No files found.
libs/remix-debug/.eslintrc
View file @
2a98b377
...
...
@@ -4,7 +4,7 @@
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-this-alias": "off",
"
camelcase
": "off"
"
dot-notation
": "off"
},
"env": {
"browser": true,
...
...
libs/remix-debug/src/code/breakpointManager.ts
View file @
2a98b377
libs/remix-debug/src/debugger/debugger.ts
View file @
2a98b377
...
...
@@ -12,7 +12,7 @@ export class Debugger {
compilationResult
debugger
breakPointManager
step_manager
step_manager
// eslint-disable-line camelcase
vmDebuggerLogic
constructor
(
options
)
{
...
...
libs/remix-debug/src/solidity-decoder/internalCallTree.ts
View file @
2a98b377
libs/remix-debug/src/solidity-decoder/types/RefType.ts
View file @
2a98b377
...
...
@@ -16,12 +16,12 @@ export class RefType {
this
.
basicType
=
'RefType'
}
decodeFromStorage
(
input1
?
:
any
,
input2
?
:
any
)
{
throw
new
Error
(
'This method is abstract'
)
;
decodeFromStorage
(
input1
?
:
any
,
input2
?
:
any
)
{
throw
new
Error
(
'This method is abstract'
)
}
decodeFromMemoryInternal
(
input1
?
:
any
,
input2
?
:
any
,
input3
?:
any
)
{
throw
new
Error
(
'This method is abstract'
)
;
decodeFromMemoryInternal
(
input1
?
:
any
,
input2
?
:
any
,
input3
?:
any
)
{
throw
new
Error
(
'This method is abstract'
)
}
/**
...
...
libs/remix-debug/src/solidity-decoder/types/ValueType.ts
View file @
2a98b377
...
...
@@ -14,8 +14,8 @@ export class ValueType {
this
.
basicType
=
'ValueType'
}
decodeValue
(
input
?
:
any
)
{
throw
new
Error
(
'This method is abstract'
)
;
decodeValue
(
input
?
:
any
)
{
throw
new
Error
(
'This method is abstract'
)
}
/**
...
...
libs/remix-debug/src/trace/traceCache.ts
View file @
2a98b377
'use strict'
import
{
util
}
from
'@remix-project/remix-lib'
// eslint-disable-next-line camelcase
const
{
sha3_256
}
=
util
export
class
TraceCache
{
...
...
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