Remove .DS_Store files

pull/1/head
ninabreznik 7 years ago
parent 8917c13d6f
commit f1654fcd9c
  1. BIN
      .DS_Store
  2. 1
      .gitignore
  3. BIN
      assets/.DS_Store
  4. BIN
      assets/img/.DS_Store
  5. 5
      src/app/editor/contextualListener.js

BIN
.DS_Store vendored

Binary file not shown.

1
.gitignore vendored

@ -7,3 +7,4 @@ npm-debug.log*
babelify-src
package-lock.json
remix
.DS_Store

BIN
assets/.DS_Store vendored

Binary file not shown.

BIN
assets/img/.DS_Store vendored

Binary file not shown.

@ -143,12 +143,13 @@ class ContextualListener {
var executionCost
var codeDepositCost
if (node.name === 'FunctionDefinition') {
var visibility = node.attributes.visibility
if (!node.attributes.isConstructor) {
var fnName = node.attributes.name
var fn = fnName + this._getInputParams(node)
if (node.attributes.visibility === 'public') {
if (visibility === 'public' || visibility === 'external') {
executionCost = this.estimationObj.external[fn]
} else if (node.attributes.visibility === 'private') {
} else if (visibility === 'private' || visibility === 'internal') {
executionCost = this.estimationObj.internal[fn]
}
} else {

Loading…
Cancel
Save