Remove .DS_Store files

pull/3094/head
ninabreznik 7 years ago
parent b6a38c9033
commit 696bc990ef
  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 babelify-src
package-lock.json package-lock.json
remix 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 executionCost
var codeDepositCost var codeDepositCost
if (node.name === 'FunctionDefinition') { if (node.name === 'FunctionDefinition') {
var visibility = node.attributes.visibility
if (!node.attributes.isConstructor) { if (!node.attributes.isConstructor) {
var fnName = node.attributes.name var fnName = node.attributes.name
var fn = fnName + this._getInputParams(node) var fn = fnName + this._getInputParams(node)
if (node.attributes.visibility === 'public') { if (visibility === 'public' || visibility === 'external') {
executionCost = this.estimationObj.external[fn] executionCost = this.estimationObj.external[fn]
} else if (node.attributes.visibility === 'private') { } else if (visibility === 'private' || visibility === 'internal') {
executionCost = this.estimationObj.internal[fn] executionCost = this.estimationObj.internal[fn]
} }
} else { } else {

Loading…
Cancel
Save