kuasha/cosmos

View on GitHub
samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js

Summary

Maintainability
F
3 yrs
Test Coverage

File worker-coffee.js has 6749 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"no use strict";
;(function(window) {
if (typeof window.window != "undefined" && window.document) {
    return;
}

    Function anonymous has 469 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    performAction: function anonymous(yytext, yyleng, yylineno, yy, yystate /* action[1] */, $$ /* vstack */, _$ /* lstack */) {
    
    var $0 = $$.length - 1;
    switch (yystate) {
    case 1:return this.$ = yy.addLocationDataFn(_$[$0], _$[$0])(new yy.Block);

      Function Rewriter has 421 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        exports.Rewriter = (function() {
          function Rewriter() {}
      
          Rewriter.prototype.rewrite = function(tokens) {
            this.tokens = tokens;

        Function addImplicitBracesAndParens has 179 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            Rewriter.prototype.addImplicitBracesAndParens = function() {
              var stack;
              stack = [];
              return this.scanTokens(function(token, i, tokens) {
                var endAllImplicitCalls, endImplicitCall, endImplicitObject, forward, inImplicit, inImplicitCall, inImplicitControl, inImplicitObject, nextTag, offset, prevTag, prevToken, s, sameLine, stackIdx, stackTag, stackTop, startIdx, startImplicitCall, startImplicitObject, startsLine, tag, _ref, _ref1, _ref2, _ref3, _ref4, _ref5;

          Function compileNode has 122 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              Code.prototype.compileNode = function(o) {
                var answer, boundfunc, code, exprs, i, lit, p, param, params, ref, splats, uniqs, val, wasEmpty, wrapper, _i, _j, _k, _l, _len, _len1, _len2, _len3, _len4, _len5, _m, _n, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7;
                if (this.bound && ((_ref2 = o.scope.method) != null ? _ref2.bound : void 0)) {
                  this.context = o.scope.method.context;
                }

            Function parse has 120 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            parse: function parse(input) {
                var self = this, stack = [0], vstack = [null], lstack = [], table = this.table, yytext = '', yylineno = 0, yyleng = 0, recovering = 0, TERROR = 2, EOF = 1;
                this.lexer.setInput(input);
                this.lexer.yy = this.yy;
                this.yy.lexer = this.lexer;

              Function compileNode has 110 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  For.prototype.compileNode = function(o) {
                    var body, bodyFragments, compare, compareDown, declare, declareDown, defPart, defPartFragments, down, forPartFragments, guardPart, idt1, increment, index, ivar, kvar, kvarAssign, lastJumps, lvar, name, namePart, ref, resultPart, returnResult, rvar, scope, source, step, stepNum, stepVar, svar, varPart, _ref2, _ref3;
                    body = Block.wrap([this.body]);
                    lastJumps = (_ref2 = last(body.expressions)) != null ? _ref2.jumps() : void 0;
                    if (lastJumps && lastJumps instanceof Return) {

                Function compilePatternMatch has 94 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    Assign.prototype.compilePatternMatch = function(o) {
                      var acc, assigns, code, fragments, i, idx, isObject, ivar, name, obj, objects, olen, ref, rest, splat, top, val, value, vvar, vvarText, _i, _len, _ref2, _ref3, _ref4, _ref5, _ref6, _ref7;
                      top = o.level === LEVEL_TOP;
                      value = this.value;
                      objects = this.variable.base.objects;

                  Function interpolateString has 91 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      Lexer.prototype.interpolateString = function(str, options) {
                        var column, expr, heredoc, i, inner, interpolated, len, letter, lexedLength, line, locationToken, nested, offsetInChunk, pi, plusToken, popped, regex, rparen, strOffset, tag, token, tokens, value, _i, _len, _ref2, _ref3, _ref4;
                        if (options == null) {
                          options = {};
                        }

                    Function identifierToken has 79 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        Lexer.prototype.identifierToken = function() {
                          var colon, colonOffset, forcedIdentifier, id, idLength, input, match, poppedToken, prev, tag, tagToken, _ref2, _ref3, _ref4;
                          if (!(match = IDENTIFIER.exec(this.chunk))) {
                            return 0;
                          }

                      Function literalToken has 63 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          Lexer.prototype.literalToken = function() {
                            var match, prev, tag, value, _ref2, _ref3, _ref4, _ref5;
                            if (match = OPERATOR.exec(this.chunk)) {
                              value = match[0];
                              if (CODE.test(value)) {

                        Function onChange has 55 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            this.onChange = function(e) {
                                var delta = e.data;
                                var range = delta.range;
                        
                                if (range.start.row == range.end.row && range.start.row != this.row)

                          Consider simplifying this complex logical expression.
                          Open

                                  if ((__indexOf.call(IMPLICIT_FUNC, tag) >= 0 && token.spaced && !token.stringEnd || tag === '?' && i > 0 && !tokens[i - 1].spaced) && (__indexOf.call(IMPLICIT_CALL, nextTag) >= 0 || __indexOf.call(IMPLICIT_UNSPACED_CALL, nextTag) >= 0 && !((_ref = tokens[i + 1]) != null ? _ref.spaced : void 0) && !((_ref1 = tokens[i + 1]) != null ? _ref1.newLine : void 0))) {
                                    if (tag === '?') {
                                      tag = token[0] = 'FUNC_EXIST';
                                    }
                                    startImplicitCall(i + 1);
                          Severity: Critical
                          Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 2 hrs to fix

                            Function heregexToken has 49 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                                Lexer.prototype.heregexToken = function(match) {
                                  var body, flags, flagsOffset, heregex, plusToken, prev, re, tag, token, tokens, value, _i, _len, _ref2, _ref3, _ref4;
                                  heregex = match[0], body = match[1], flags = match[2];
                                  if (0 > body.indexOf('#{')) {
                                    re = this.escapeLines(body.replace(HEREGEX_OMIT, '$1$2').replace(/\//g, '\\/'), true);

                              Function unfoldSoak has 47 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                                  Call.prototype.unfoldSoak = function(o) {
                                    var call, ifn, left, list, rite, _i, _len, _ref2, _ref3;
                                    if (this.soak) {
                                      if (this.variable) {
                                        if (ifn = unfoldSoak(o, this, 'variable')) {

                                Function compileNode has 47 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                    Obj.prototype.compileNode = function(o) {
                                      var answer, i, idt, indent, join, lastNoncom, node, prop, props, _i, _j, _len, _len1;
                                      props = this.properties;
                                      if (!props.length) {
                                        return [this.makeCode(this.front ? '({})' : '{}')];

                                  Function normalizeLines has 46 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                      Rewriter.prototype.normalizeLines = function() {
                                        var action, condition, indent, outdent, starter;
                                        starter = indent = outdent = null;
                                        condition = function(token, i) {
                                          var _ref, _ref1, _ref2, _ref3;

                                    Function compileWithDeclarations has 45 lines of code (exceeds 25 allowed). Consider refactoring.
                                    Open

                                        Block.prototype.compileWithDeclarations = function(o) {
                                          var assigns, declars, exp, fragments, i, post, rest, scope, spaced, _i, _len, _ref2, _ref3, _ref4;
                                          fragments = [];
                                          post = [];
                                          _ref2 = this.expressions;

                                      Function splice has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                                      Open

                                              Array.prototype.splice = function(pos, removeCount){
                                                  var length = this.length;
                                                  if (pos > 0) {
                                                      if (pos > length)
                                                          pos = length;

                                        Function compileNode has 43 lines of code (exceeds 25 allowed). Consider refactoring.
                                        Open

                                            Assign.prototype.compileNode = function(o) {
                                              var answer, compiledName, isValue, match, name, val, varBase, _ref2, _ref3, _ref4;
                                              if (isValue = this.variable instanceof Value) {
                                                if (this.variable.isArray() || this.variable.isObject()) {
                                                  return this.compilePatternMatch(o);

                                          Consider simplifying this complex logical expression.
                                          Open

                                                    if (prevTag !== '=>' && prevTag !== '->' && prevTag !== '[' && prevTag !== '(' && prevTag !== ',' && prevTag !== '{' && prevTag !== 'TRY' && prevTag !== 'ELSE' && prevTag !== '=') {
                                                      while (inImplicitCall()) {
                                                        endImplicitCall();
                                                      }
                                                    }
                                          Severity: Critical
                                          Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 1 hr to fix

                                            Function compileSplattedArray has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                                            Open

                                                Splat.compileSplattedArray = function(o, list, apply) {
                                                  var args, base, compiledNode, concatPart, fragments, i, index, node, _i, _len;
                                                  index = -1;
                                                  while ((node = list[++index]) && !(node instanceof Splat)) {
                                                    continue;

                                              Function compileRoot has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                                              Open

                                                  Block.prototype.compileRoot = function(o) {
                                                    var exp, fragments, i, name, prelude, preludeExps, rest, _i, _len, _ref2;
                                                    o.indent = o.bare ? '' : TAB;
                                                    o.level = LEVEL_TOP;
                                                    this.spaced = true;

                                                Function addProperties has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                                                Open

                                                    Class.prototype.addProperties = function(node, name, o) {
                                                      var assign, base, exprs, func, props;
                                                      props = node.base.properties.slice(0);
                                                      exprs = (function() {
                                                        var _results;

                                                  Function compileNode has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                                                  Open

                                                      Block.prototype.compileNode = function(o) {
                                                        var answer, compiledNodes, fragments, index, node, top, _i, _len, _ref2;
                                                        this.tab = o.indent;
                                                        top = o.level === LEVEL_TOP;
                                                        compiledNodes = [];

                                                    Function lineToken has 39 lines of code (exceeds 25 allowed). Consider refactoring.
                                                    Open

                                                        Lexer.prototype.lineToken = function() {
                                                          var diff, indent, match, noNewlines, size;
                                                          if (!(match = MULTI_DENT.exec(this.chunk))) {
                                                            return 0;
                                                          }

                                                      Function eachName has 37 lines of code (exceeds 25 allowed). Consider refactoring.
                                                      Open

                                                          Param.prototype.eachName = function(iterator, name) {
                                                            var atParam, node, obj, _i, _len, _ref2;
                                                            if (name == null) {
                                                              name = this.name;
                                                            }

                                                        Function define has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                                                        Open

                                                        window.define = function(id, deps, factory) {
                                                            if (arguments.length == 2) {
                                                                factory = deps;
                                                                if (typeof id != "string") {
                                                                    deps = id;

                                                          Function compileNode has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                                                          Open

                                                              Arr.prototype.compileNode = function(o) {
                                                                var answer, compiledObjs, fragments, index, obj, _i, _len;
                                                                if (!this.objects.length) {
                                                                  return [this.makeCode('[]')];
                                                                }

                                                            Function compileNode has 34 lines of code (exceeds 25 allowed). Consider refactoring.
                                                            Open

                                                                Call.prototype.compileNode = function(o) {
                                                                  var arg, argIndex, compiledArgs, compiledArray, fragments, preface, _i, _len, _ref2, _ref3;
                                                                  if ((_ref2 = this.variable) != null) {
                                                                    _ref2.front = this.front;
                                                                  }

                                                              Function compileNode has 34 lines of code (exceeds 25 allowed). Consider refactoring.
                                                              Open

                                                                  Class.prototype.compileNode = function(o) {
                                                                    var args, argumentsNode, func, jumpNode, klass, lname, name, superClass, _ref2;
                                                                    if (jumpNode = this.body.jumps()) {
                                                                      jumpNode.error('Class bodies cannot contain pure statements');
                                                                    }

                                                                Function compileNode has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                Open

                                                                    Switch.prototype.compileNode = function(o) {
                                                                      var block, body, cond, conditions, expr, fragments, i, idt1, idt2, _i, _j, _len, _len1, _ref2, _ref3, _ref4;
                                                                      idt1 = o.indent + TAB;
                                                                      idt2 = o.indent = idt1 + TAB;
                                                                      fragments = [].concat(this.makeCode(this.tab + "switch ("), (this.subject ? this.subject.compileToFragments(o, LEVEL_PAREN) : this.makeCode("false")), this.makeCode(") {\n"));

                                                                  Function reduce has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                  Open

                                                                      Array.prototype.reduce = function reduce(fun /*, initial*/) {
                                                                          var object = toObject(this),
                                                                              self = splitString && _toString(this) == "[object String]" ?
                                                                                  this.split("") :
                                                                                  object,

                                                                    Function compileArray has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                    Open

                                                                        Range.prototype.compileArray = function(o) {
                                                                          var args, body, cond, hasArgs, i, idt, post, pre, range, result, vars, _i, _ref2, _ref3, _results;
                                                                          if (this.fromNum && this.toNum && Math.abs(this.fromNum - this.toNum) <= 20) {
                                                                            range = (function() {
                                                                              _results = [];

                                                                      Function balancedString has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                      Open

                                                                          Lexer.prototype.balancedString = function(str, end) {
                                                                            var continueCount, i, letter, match, prev, stack, _i, _ref2;
                                                                            continueCount = 0;
                                                                            stack = [end];
                                                                            for (i = _i = 1, _ref2 = str.length; 1 <= _ref2 ? _i < _ref2 : _i > _ref2; i = 1 <= _ref2 ? ++_i : --_i) {

                                                                        Function reduceRight has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                        Open

                                                                            Array.prototype.reduceRight = function reduceRight(fun /*, initial*/) {
                                                                                var object = toObject(this),
                                                                                    self = splitString && _toString(this) == "[object String]" ?
                                                                                        this.split("") :
                                                                                        object,

                                                                          Function invert has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                          Open

                                                                              Op.prototype.invert = function() {
                                                                                var allInvertable, curr, fst, op, _ref2;
                                                                                if (this.isChainable() && this.first.isChainable()) {
                                                                                  allInvertable = true;
                                                                                  curr = this;

                                                                            Function defineProperty has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                            Open

                                                                                Object.defineProperty = function defineProperty(object, property, descriptor) {
                                                                                    if ((typeof object != "object" && typeof object != "function") || object === null)
                                                                                        throw new TypeError(ERR_NON_OBJECT_TARGET + object);
                                                                                    if ((typeof descriptor != "object" && typeof descriptor != "function") || descriptor === null)
                                                                                        throw new TypeError(ERR_NON_OBJECT_DESCRIPTOR + descriptor);

                                                                              Function compileStatement has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                              Open

                                                                                  If.prototype.compileStatement = function(o) {
                                                                                    var answer, body, child, cond, exeq, ifPart, indent;
                                                                                    child = del(o, 'chainChild');
                                                                                    exeq = del(o, 'isExistentialEquals');
                                                                                    if (exeq) {

                                                                                Function compileSplice has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                Open

                                                                                    Assign.prototype.compileSplice = function(o) {
                                                                                      var answer, exclusive, from, fromDecl, fromRef, name, to, valDef, valRef, _ref2, _ref3, _ref4;
                                                                                      _ref2 = this.variable.properties.pop().range, from = _ref2.from, to = _ref2.to, exclusive = _ref2.exclusive;
                                                                                      name = this.variable.compile(o);
                                                                                      if (from) {

                                                                                  Function tokenize has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                  Open

                                                                                      Lexer.prototype.tokenize = function(code, opts) {
                                                                                        var consumed, i, tag, _ref2;
                                                                                        if (opts == null) {
                                                                                          opts = {};
                                                                                        }

                                                                                    Function outdentToken has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                    Open

                                                                                        Lexer.prototype.outdentToken = function(moveOut, noNewlines, outdentLength) {
                                                                                          var dent, len;
                                                                                          while (moveOut > 0) {
                                                                                            len = this.indents.length - 1;
                                                                                            if (this.indents[len] === void 0) {

                                                                                      Function unfoldSoak has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                      Open

                                                                                          Value.prototype.unfoldSoak = function(o) {
                                                                                            return this.unfoldedSoak != null ? this.unfoldedSoak : this.unfoldedSoak = (function(_this) {
                                                                                              return function() {
                                                                                                var fst, i, ifn, prop, ref, snd, _i, _len, _ref2, _ref3;
                                                                                                if (ifn = _this.base.unfoldSoak(o)) {

                                                                                        Function bind has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                        Open

                                                                                            Function.prototype.bind = function bind(that) { // .length is 1
                                                                                                var target = this;
                                                                                                if (typeof target != "function") {
                                                                                                    throw new TypeError("Function.prototype.bind called on incompatible " + target);
                                                                                                }

                                                                                          Function compileNode has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                          Open

                                                                                              Range.prototype.compileNode = function(o) {
                                                                                                var cond, condPart, from, gt, idx, idxName, known, lt, namedIndex, stepPart, to, varPart, _ref2, _ref3;
                                                                                                if (!this.fromVar) {
                                                                                                  this.compileVariables(o);
                                                                                                }

                                                                                            Function compileNode has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                            Open

                                                                                                While.prototype.compileNode = function(o) {
                                                                                                  var answer, body, rvar, set;
                                                                                                  o.indent += TAB;
                                                                                                  set = '';
                                                                                                  body = this.body;

                                                                                              Function compileSplat has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                              Open

                                                                                                  Call.prototype.compileSplat = function(o, splatArgs) {
                                                                                                    var answer, base, fun, idt, name, ref;
                                                                                                    if (this.isSuper) {
                                                                                                      return [].concat(this.makeCode("" + (this.superReference(o)) + ".apply(" + (this.superThis(o)) + ", "), splatArgs, this.makeCode(")"));
                                                                                                    }

                                                                                                Function unfoldedSoak has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                                Open

                                                                                                      return this.unfoldedSoak != null ? this.unfoldedSoak : this.unfoldedSoak = (function(_this) {
                                                                                                        return function() {
                                                                                                          var fst, i, ifn, prop, ref, snd, _i, _len, _ref2, _ref3;
                                                                                                          if (ifn = _this.base.unfoldSoak(o)) {
                                                                                                            (_ref2 = ifn.body.properties).push.apply(_ref2, _this.properties);

                                                                                                  Function tagParameters has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                                  Open

                                                                                                      Lexer.prototype.tagParameters = function() {
                                                                                                        var i, stack, tok, tokens;
                                                                                                        if (this.tag() !== ')') {
                                                                                                          return this;
                                                                                                        }

                                                                                                    Function delayedCall has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                                    Open

                                                                                                    exports.delayedCall = function(fcn, defaultTimeout) {
                                                                                                        var timer = null;
                                                                                                        var callback = function() {
                                                                                                            timer = null;
                                                                                                            fcn();

                                                                                                      Function compileNode has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                                                                                                      Open

                                                                                                          Op.prototype.compileNode = function(o) {
                                                                                                            var answer, isChain, _ref2, _ref3;
                                                                                                            isChain = this.isChainable() && this.first.isChainable();
                                                                                                            if (!isChain) {
                                                                                                              this.first.front = this.front;

                                                                                                        Consider simplifying this complex logical expression.
                                                                                                        Open

                                                                                                                if (inImplicitCall() && (tag === 'IF' || tag === 'TRY' || tag === 'FINALLY' || tag === 'CATCH' || tag === 'CLASS' || tag === 'SWITCH')) {
                                                                                                                  stack.push([
                                                                                                                    'CONTROL', i, {
                                                                                                                      ours: true
                                                                                                                    }

                                                                                                          Function performAction has 7 arguments (exceeds 4 allowed). Consider refactoring.
                                                                                                          Open

                                                                                                          performAction: function anonymous(yytext, yyleng, yylineno, yy, yystate /* action[1] */, $$ /* vstack */, _$ /* lstack */) {
                                                                                                          Severity: Major
                                                                                                          Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 50 mins to fix

                                                                                                            Avoid deeply nested control flow statements.
                                                                                                            Open

                                                                                                                          if (down) {
                                                                                                                            compare = compareDown;
                                                                                                                            declare = declareDown;
                                                                                                                          }
                                                                                                            Severity: Major
                                                                                                            Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 45 mins to fix

                                                                                                              Avoid deeply nested control flow statements.
                                                                                                              Open

                                                                                                                                  for (var i = 0; i < tailCount; ++i) {
                                                                                                                                      this[tailNewPos+i] = this[tailOldPos+i];
                                                                                                                                  }
                                                                                                              Severity: Major
                                                                                                              Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 45 mins to fix

                                                                                                                Avoid deeply nested control flow statements.
                                                                                                                Open

                                                                                                                                    for (i = 0; i < add; ++i) {
                                                                                                                                        this[pos+i] = insert[i];
                                                                                                                                    }
                                                                                                                Severity: Major
                                                                                                                Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 45 mins to fix

                                                                                                                  Avoid deeply nested control flow statements.
                                                                                                                  Open

                                                                                                                              if (start.row <= row) {
                                                                                                                                  if (end.row <= row)
                                                                                                                                      row -= end.row - start.row;
                                                                                                                                  else {
                                                                                                                                      row = start.row;
                                                                                                                  Severity: Major
                                                                                                                  Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 45 mins to fix

                                                                                                                    Avoid deeply nested control flow statements.
                                                                                                                    Open

                                                                                                                                } else if (start.row !== end.row && start.row < row) {
                                                                                                                                    if (end.row === row)
                                                                                                                                        column = Math.max(0, column - end.column) + start.column;
                                                                                                                                    row -= (end.row - start.row);
                                                                                                                                } else if (end.row === row) {
                                                                                                                    Severity: Major
                                                                                                                    Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 45 mins to fix

                                                                                                                      Avoid deeply nested control flow statements.
                                                                                                                      Open

                                                                                                                                      } else if (tailNewPos > tailOldPos) { // case B
                                                                                                                                          for (i = tailCount; i--; ) {
                                                                                                                                              this[tailNewPos+i] = this[tailOldPos+i];
                                                                                                                                          }
                                                                                                                                      } // else, add == remove (nothing to do)
                                                                                                                      Severity: Major
                                                                                                                      Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 45 mins to fix

                                                                                                                        Avoid deeply nested control flow statements.
                                                                                                                        Open

                                                                                                                                        if (func instanceof Code && func.bound) {
                                                                                                                                          this.boundFuncs.push(base);
                                                                                                                                          func.bound = false;
                                                                                                                                        }
                                                                                                                        Severity: Major
                                                                                                                        Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 45 mins to fix

                                                                                                                          Avoid deeply nested control flow statements.
                                                                                                                          Open

                                                                                                                                          if (end.column >= column)
                                                                                                                                              column = start.column;
                                                                                                                                          else
                                                                                                                                              column = Math.max(0, column - (end.column - start.column));
                                                                                                                          Severity: Major
                                                                                                                          Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 45 mins to fix

                                                                                                                            Consider simplifying this complex logical expression.
                                                                                                                            Open

                                                                                                                                        if ((stackTag === '{' || stackTag === 'INDENT' && this.tag(stackIdx - 1) === '{') && (startsLine || this.tag(s - 1) === ',' || this.tag(s - 1) === '{')) {
                                                                                                                                          return forward(1);
                                                                                                                                        }
                                                                                                                            Severity: Major
                                                                                                                            Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 40 mins to fix

                                                                                                                              Consider simplifying this complex logical expression.
                                                                                                                              Open

                                                                                                                                    if ((op === 'new' || op === 'typeof' || op === 'delete') || plusMinus && this.first instanceof Op && this.first.operator === op) {
                                                                                                                                      parts.push([this.makeCode(' ')]);
                                                                                                                                    }
                                                                                                                              Severity: Major
                                                                                                                              Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 40 mins to fix

                                                                                                                                Consider simplifying this complex logical expression.
                                                                                                                                Open

                                                                                                                                        if (!((val instanceof Code) || (val instanceof Value && ((_ref4 = val.base) != null ? _ref4.unwrapAll() : void 0) instanceof Code && val.properties.length === 1 && ((_ref5 = (_ref6 = val.properties[0].name) != null ? _ref6.value : void 0) === 'call' || _ref5 === 'apply')))) {
                                                                                                                                          continue;
                                                                                                                                        }
                                                                                                                                Severity: Major
                                                                                                                                Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 40 mins to fix

                                                                                                                                  Function onerror has 5 arguments (exceeds 4 allowed). Consider refactoring.
                                                                                                                                  Open

                                                                                                                                  window.onerror = function(message, file, line, col, err) {
                                                                                                                                  Severity: Minor
                                                                                                                                  Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 35 mins to fix

                                                                                                                                    Avoid too many return statements within this function.
                                                                                                                                    Open

                                                                                                                                                    return -1;
                                                                                                                                    Severity: Major
                                                                                                                                    Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                      Avoid too many return statements within this function.
                                                                                                                                      Open

                                                                                                                                                  return forward(1);
                                                                                                                                      Severity: Major
                                                                                                                                      Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                        Avoid too many return statements within this function.
                                                                                                                                        Open

                                                                                                                                                  return forward(2);
                                                                                                                                        Severity: Major
                                                                                                                                        Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                          Avoid too many return statements within this function.
                                                                                                                                          Open

                                                                                                                                                return indent.length;
                                                                                                                                          Severity: Major
                                                                                                                                          Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                            Avoid too many return statements within this function.
                                                                                                                                            Open

                                                                                                                                                        return column <= this.end.column ? 0 : 1;
                                                                                                                                            Severity: Major
                                                                                                                                            Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                              Avoid too many return statements within this function.
                                                                                                                                              Open

                                                                                                                                                      return forward(1);
                                                                                                                                              Severity: Major
                                                                                                                                              Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                                Avoid too many return statements within this function.
                                                                                                                                                Open

                                                                                                                                                        return 0;
                                                                                                                                                Severity: Major
                                                                                                                                                Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                                  Avoid too many return statements within this function.
                                                                                                                                                  Open

                                                                                                                                                                return forward(1);
                                                                                                                                                  Severity: Major
                                                                                                                                                  Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                                    Avoid too many return statements within this function.
                                                                                                                                                    Open

                                                                                                                                                            return 1;
                                                                                                                                                    Severity: Major
                                                                                                                                                    Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                                      Avoid too many return statements within this function.
                                                                                                                                                      Open

                                                                                                                                                              return this.wrapInBraces(fragments);
                                                                                                                                                      Severity: Major
                                                                                                                                                      Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                                        Avoid too many return statements within this function.
                                                                                                                                                        Open

                                                                                                                                                                return this.wrapInBraces(answer);
                                                                                                                                                        Severity: Major
                                                                                                                                                        Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                                          Avoid too many return statements within this function.
                                                                                                                                                          Open

                                                                                                                                                                  return new Op('!', this);
                                                                                                                                                          Severity: Major
                                                                                                                                                          Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                                            Avoid too many return statements within this function.
                                                                                                                                                            Open

                                                                                                                                                                            return 42;
                                                                                                                                                            Severity: Major
                                                                                                                                                            Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                                              Avoid too many return statements within this function.
                                                                                                                                                              Open

                                                                                                                                                                      return answer;
                                                                                                                                                              Severity: Major
                                                                                                                                                              Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                                                Avoid too many return statements within this function.
                                                                                                                                                                Open

                                                                                                                                                                                return 0;
                                                                                                                                                                Severity: Major
                                                                                                                                                                Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                                                  Avoid too many return statements within this function.
                                                                                                                                                                  Open

                                                                                                                                                                            return forward(3);
                                                                                                                                                                  Severity: Major
                                                                                                                                                                  Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                                                    Avoid too many return statements within this function.
                                                                                                                                                                    Open

                                                                                                                                                                          return match.length;
                                                                                                                                                                    Severity: Major
                                                                                                                                                                    Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                                                      Avoid too many return statements within this function.
                                                                                                                                                                      Open

                                                                                                                                                                              return fst;
                                                                                                                                                                      Severity: Major
                                                                                                                                                                      Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                                                        Avoid too many return statements within this function.
                                                                                                                                                                        Open

                                                                                                                                                                                return this.wrapInBraces(answer);
                                                                                                                                                                        Severity: Major
                                                                                                                                                                        Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                                                          Avoid too many return statements within this function.
                                                                                                                                                                          Open

                                                                                                                                                                                      return forward(1);
                                                                                                                                                                          Severity: Major
                                                                                                                                                                          Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                                                            Avoid too many return statements within this function.
                                                                                                                                                                            Open

                                                                                                                                                                                  return [].concat(list[0].makeCode("["), base, list[index].makeCode("].concat("), concatPart, (last(list)).makeCode(")"));
                                                                                                                                                                            Severity: Major
                                                                                                                                                                            Found in samples/adminpanel/app/bower_components/ace-builds/src/worker-coffee.js - About 30 mins to fix

                                                                                                                                                                              Similar blocks of code found in 2 locations. Consider refactoring.
                                                                                                                                                                              Open

                                                                                                                                                                              define("ace/mode/coffee/parser",["require","exports","module"], function(require, exports, module) {
                                                                                                                                                                              
                                                                                                                                                                              var parser = {trace: function trace() { },
                                                                                                                                                                              yy: {},
                                                                                                                                                                              symbols_: {"error":2,"Root":3,"Body":4,"Line":5,"TERMINATOR":6,"Expression":7,"Statement":8,"Return":9,"Comment":10,"STATEMENT":11,"Value":12,"Invocation":13,"Code":14,"Operation":15,"Assign":16,"If":17,"Try":18,"While":19,"For":20,"Switch":21,"Class":22,"Throw":23,"Block":24,"INDENT":25,"OUTDENT":26,"Identifier":27,"IDENTIFIER":28,"AlphaNumeric":29,"NUMBER":30,"STRING":31,"Literal":32,"JS":33,"REGEX":34,"DEBUGGER":35,"UNDEFINED":36,"NULL":37,"BOOL":38,"Assignable":39,"=":40,"AssignObj":41,"ObjAssignable":42,":":43,"ThisProperty":44,"RETURN":45,"HERECOMMENT":46,"PARAM_START":47,"ParamList":48,"PARAM_END":49,"FuncGlyph":50,"->":51,"=>":52,"OptComma":53,",":54,"Param":55,"ParamVar":56,"...":57,"Array":58,"Object":59,"Splat":60,"SimpleAssignable":61,"Accessor":62,"Parenthetical":63,"Range":64,"This":65,".":66,"?.":67,"::":68,"?::":69,"Index":70,"INDEX_START":71,"IndexValue":72,"INDEX_END":73,"INDEX_SOAK":74,"Slice":75,"{":76,"AssignList":77,"}":78,"CLASS":79,"EXTENDS":80,"OptFuncExist":81,"Arguments":82,"SUPER":83,"FUNC_EXIST":84,"CALL_START":85,"CALL_END":86,"ArgList":87,"THIS":88,"@":89,"[":90,"]":91,"RangeDots":92,"..":93,"Arg":94,"SimpleArgs":95,"TRY":96,"Catch":97,"FINALLY":98,"CATCH":99,"THROW":100,"(":101,")":102,"WhileSource":103,"WHILE":104,"WHEN":105,"UNTIL":106,"Loop":107,"LOOP":108,"ForBody":109,"FOR":110,"ForStart":111,"ForSource":112,"ForVariables":113,"OWN":114,"ForValue":115,"FORIN":116,"FOROF":117,"BY":118,"SWITCH":119,"Whens":120,"ELSE":121,"When":122,"LEADING_WHEN":123,"IfBlock":124,"IF":125,"POST_IF":126,"UNARY":127,"-":128,"+":129,"--":130,"++":131,"?":132,"MATH":133,"SHIFT":134,"COMPARE":135,"LOGIC":136,"RELATION":137,"COMPOUND_ASSIGN":138,"$accept":0,"$end":1},
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src-noconflict/worker-coffee.js on lines 2965..3586

                                                                                                                                                                              Duplicated Code

                                                                                                                                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                                                                                                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                                                                                                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                                                                                                                                              Tuning

                                                                                                                                                                              This issue has a mass of 83123.

                                                                                                                                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                                                                                                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                                                                                                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                                                                                                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                                                                                                                                              Refactorings

                                                                                                                                                                              Further Reading

                                                                                                                                                                              Similar blocks of code found in 2 locations. Consider refactoring.
                                                                                                                                                                              Open

                                                                                                                                                                              define("ace/mode/coffee/nodes",["require","exports","module","ace/mode/coffee/scope","ace/mode/coffee/lexer","ace/mode/coffee/helpers"], function(require, exports, module) {
                                                                                                                                                                              
                                                                                                                                                                                var Access, Arr, Assign, Base, Block, Call, Class, Code, CodeFragment, Comment, Existence, Extends, For, HEXNUM, IDENTIFIER, IDENTIFIER_STR, IS_REGEX, IS_STRING, If, In, Index, LEVEL_ACCESS, LEVEL_COND, LEVEL_LIST, LEVEL_OP, LEVEL_PAREN, LEVEL_TOP, Literal, METHOD_DEF, NEGATE, NO, NUMBER, Obj, Op, Param, Parens, RESERVED, Range, Return, SIMPLENUM, STRICT_PROSCRIBED, Scope, Slice, Splat, Switch, TAB, THIS, Throw, Try, UTILITIES, Value, While, YES, addLocationDataFn, compact, del, ends, extend, flatten, fragmentsToText, isLiteralArguments, isLiteralThis, last, locationDataToString, merge, multident, parseNum, some, starts, throwSyntaxError, unfoldSoak, utility, _ref, _ref1,
                                                                                                                                                                                  __hasProp = {}.hasOwnProperty,
                                                                                                                                                                                  __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src-noconflict/worker-coffee.js on lines 3736..6814

                                                                                                                                                                              Duplicated Code

                                                                                                                                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                                                                                                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                                                                                                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                                                                                                                                              Tuning

                                                                                                                                                                              This issue has a mass of 36653.

                                                                                                                                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                                                                                                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                                                                                                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                                                                                                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                                                                                                                                              Refactorings

                                                                                                                                                                              Further Reading

                                                                                                                                                                              Similar blocks of code found in 2 locations. Consider refactoring.
                                                                                                                                                                              Open

                                                                                                                                                                              define("ace/mode/coffee/lexer",["require","exports","module","ace/mode/coffee/rewriter","ace/mode/coffee/helpers"], function(require, exports, module) {
                                                                                                                                                                              
                                                                                                                                                                                var BOM, BOOL, CALLABLE, CODE, COFFEE_ALIASES, COFFEE_ALIAS_MAP, COFFEE_KEYWORDS, COMMENT, COMPARE, COMPOUND_ASSIGN, HEREDOC, HEREDOC_ILLEGAL, HEREDOC_INDENT, HEREGEX, HEREGEX_OMIT, IDENTIFIER, INDEXABLE, INVERSES, JSTOKEN, JS_FORBIDDEN, JS_KEYWORDS, LINE_BREAK, LINE_CONTINUER, LOGIC, Lexer, MATH, MULTILINER, MULTI_DENT, NOT_REGEX, NOT_SPACED_REGEX, NUMBER, OPERATOR, REGEX, RELATION, RESERVED, Rewriter, SHIFT, SIMPLESTR, STRICT_PROSCRIBED, TRAILING_SPACES, UNARY, WHITESPACE, compact, count, invertLiterate, key, last, locationDataToString, repeat, starts, throwSyntaxError, _ref, _ref1,
                                                                                                                                                                                  __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };
                                                                                                                                                                              
                                                                                                                                                                              
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src-noconflict/worker-coffee.js on lines 2056..2963

                                                                                                                                                                              Duplicated Code

                                                                                                                                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                                                                                                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                                                                                                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                                                                                                                                              Tuning

                                                                                                                                                                              This issue has a mass of 10096.

                                                                                                                                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                                                                                                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                                                                                                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                                                                                                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                                                                                                                                              Refactorings

                                                                                                                                                                              Further Reading

                                                                                                                                                                              Similar blocks of code found in 2 locations. Consider refactoring.
                                                                                                                                                                              Open

                                                                                                                                                                              define("ace/mode/coffee/rewriter",["require","exports","module"], function(require, exports, module) {
                                                                                                                                                                              
                                                                                                                                                                                var BALANCED_PAIRS, CALL_CLOSERS, EXPRESSION_CLOSE, EXPRESSION_END, EXPRESSION_START, IMPLICIT_CALL, IMPLICIT_END, IMPLICIT_FUNC, IMPLICIT_UNSPACED_CALL, INVERSES, LINEBREAKS, SINGLE_CLOSERS, SINGLE_LINERS, generate, left, rite, _i, _len, _ref,
                                                                                                                                                                                  __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; },
                                                                                                                                                                                  __slice = [].slice;
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src-noconflict/worker-coffee.js on lines 1321..1809

                                                                                                                                                                              Duplicated Code

                                                                                                                                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                                                                                                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                                                                                                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                                                                                                                                              Tuning

                                                                                                                                                                              This issue has a mass of 6039.

                                                                                                                                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                                                                                                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                                                                                                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                                                                                                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                                                                                                                                              Refactorings

                                                                                                                                                                              Further Reading

                                                                                                                                                                              Similar blocks of code found in 7 locations. Consider refactoring.
                                                                                                                                                                              Open

                                                                                                                                                                              define("ace/lib/es5-shim",["require","exports","module"], function(require, exports, module) {
                                                                                                                                                                              
                                                                                                                                                                              function Empty() {}
                                                                                                                                                                              
                                                                                                                                                                              if (!Function.prototype.bind) {
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-css.js on lines 7692..8387
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-html.js on lines 10822..11517
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-javascript.js on lines 9724..10419
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-json.js on lines 1613..2308
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-lua.js on lines 2849..3544
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-php.js on lines 6242..6937

                                                                                                                                                                              Duplicated Code

                                                                                                                                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                                                                                                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                                                                                                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                                                                                                                                              Tuning

                                                                                                                                                                              This issue has a mass of 5917.

                                                                                                                                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                                                                                                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                                                                                                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                                                                                                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                                                                                                                                              Refactorings

                                                                                                                                                                              Further Reading

                                                                                                                                                                              Similar blocks of code found in 7 locations. Consider refactoring.
                                                                                                                                                                              Open

                                                                                                                                                                              define("ace/document",["require","exports","module","ace/lib/oop","ace/lib/event_emitter","ace/range","ace/anchor"], function(require, exports, module) {
                                                                                                                                                                              "use strict";
                                                                                                                                                                              
                                                                                                                                                                              var oop = require("./lib/oop");
                                                                                                                                                                              var EventEmitter = require("./lib/event_emitter").EventEmitter;
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-css.js on lines 913..1270
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-html.js on lines 913..1270
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-javascript.js on lines 726..1083
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-json.js on lines 726..1083
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-lua.js on lines 726..1083
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-php.js on lines 726..1083

                                                                                                                                                                              Duplicated Code

                                                                                                                                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                                                                                                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                                                                                                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                                                                                                                                              Tuning

                                                                                                                                                                              This issue has a mass of 4008.

                                                                                                                                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                                                                                                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                                                                                                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                                                                                                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                                                                                                                                              Refactorings

                                                                                                                                                                              Further Reading

                                                                                                                                                                              Similar blocks of code found in 7 locations. Consider refactoring.
                                                                                                                                                                              Open

                                                                                                                                                                              define("ace/range",["require","exports","module"], function(require, exports, module) {
                                                                                                                                                                              "use strict";
                                                                                                                                                                              var comparePoints = function(p1, p2) {
                                                                                                                                                                                  return p1.row - p2.row || p1.column - p2.column;
                                                                                                                                                                              };
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-css.js on lines 525..762
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-html.js on lines 525..762
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-javascript.js on lines 338..575
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-json.js on lines 338..575
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-lua.js on lines 338..575
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-php.js on lines 338..575

                                                                                                                                                                              Duplicated Code

                                                                                                                                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                                                                                                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                                                                                                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                                                                                                                                              Tuning

                                                                                                                                                                              This issue has a mass of 2568.

                                                                                                                                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                                                                                                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                                                                                                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                                                                                                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                                                                                                                                              Refactorings

                                                                                                                                                                              Further Reading

                                                                                                                                                                              Similar blocks of code found in 2 locations. Consider refactoring.
                                                                                                                                                                              Open

                                                                                                                                                                              define("ace/mode/coffee/helpers",["require","exports","module"], function(require, exports, module) {
                                                                                                                                                                              
                                                                                                                                                                                var buildLocationData, extend, flatten, last, repeat, syntaxErrorToString, _ref;
                                                                                                                                                                              
                                                                                                                                                                                exports.starts = function(string, literal, start) {
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src-noconflict/worker-coffee.js on lines 1811..2054

                                                                                                                                                                              Duplicated Code

                                                                                                                                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                                                                                                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                                                                                                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                                                                                                                                              Tuning

                                                                                                                                                                              This issue has a mass of 2361.

                                                                                                                                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                                                                                                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                                                                                                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                                                                                                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                                                                                                                                              Refactorings

                                                                                                                                                                              Further Reading

                                                                                                                                                                              Identical blocks of code found in 14 locations. Consider refactoring.
                                                                                                                                                                              Open

                                                                                                                                                                              ;(function(window) {
                                                                                                                                                                              if (typeof window.window != "undefined" && window.document) {
                                                                                                                                                                                  return;
                                                                                                                                                                              }
                                                                                                                                                                              
                                                                                                                                                                              
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src-noconflict/worker-coffee.js on lines 2..182
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src-noconflict/worker-css.js on lines 2..182
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src-noconflict/worker-html.js on lines 2..182
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src-noconflict/worker-javascript.js on lines 2..182
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src-noconflict/worker-json.js on lines 2..182
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src-noconflict/worker-lua.js on lines 2..182
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src-noconflict/worker-php.js on lines 2..182
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-css.js on lines 2..182
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-html.js on lines 2..182
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-javascript.js on lines 2..182
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-json.js on lines 2..182
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-lua.js on lines 2..182
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-php.js on lines 2..182

                                                                                                                                                                              Duplicated Code

                                                                                                                                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                                                                                                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                                                                                                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                                                                                                                                              Tuning

                                                                                                                                                                              This issue has a mass of 1584.

                                                                                                                                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                                                                                                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                                                                                                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                                                                                                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                                                                                                                                              Refactorings

                                                                                                                                                                              Further Reading

                                                                                                                                                                              Similar blocks of code found in 7 locations. Consider refactoring.
                                                                                                                                                                              Open

                                                                                                                                                                              define("ace/anchor",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"], function(require, exports, module) {
                                                                                                                                                                              "use strict";
                                                                                                                                                                              
                                                                                                                                                                              var oop = require("./lib/oop");
                                                                                                                                                                              var EventEmitter = require("./lib/event_emitter").EventEmitter;
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-css.js on lines 764..911
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-html.js on lines 764..911
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-javascript.js on lines 577..724
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-json.js on lines 577..724
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-lua.js on lines 577..724
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-php.js on lines 577..724

                                                                                                                                                                              Duplicated Code

                                                                                                                                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                                                                                                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                                                                                                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                                                                                                                                              Tuning

                                                                                                                                                                              This issue has a mass of 1567.

                                                                                                                                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                                                                                                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                                                                                                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                                                                                                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                                                                                                                                              Refactorings

                                                                                                                                                                              Further Reading

                                                                                                                                                                              Similar blocks of code found in 2 locations. Consider refactoring.
                                                                                                                                                                              Open

                                                                                                                                                                              define("ace/mode/coffee/scope",["require","exports","module","ace/mode/coffee/helpers"], function(require, exports, module) {
                                                                                                                                                                              
                                                                                                                                                                                var Scope, extend, last, _ref;
                                                                                                                                                                              
                                                                                                                                                                                _ref = require('./helpers'), extend = _ref.extend, last = _ref.last;
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src-noconflict/worker-coffee.js on lines 3588..3734

                                                                                                                                                                              Duplicated Code

                                                                                                                                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                                                                                                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                                                                                                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                                                                                                                                              Tuning

                                                                                                                                                                              This issue has a mass of 1395.

                                                                                                                                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                                                                                                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                                                                                                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                                                                                                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                                                                                                                                              Refactorings

                                                                                                                                                                              Further Reading

                                                                                                                                                                              Identical blocks of code found in 7 locations. Consider refactoring.
                                                                                                                                                                              Open

                                                                                                                                                                              define("ace/lib/lang",["require","exports","module"], function(require, exports, module) {
                                                                                                                                                                              "use strict";
                                                                                                                                                                              
                                                                                                                                                                              exports.last = function(a) {
                                                                                                                                                                                  return a[a.length - 1];
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-css.js on lines 212..397
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-html.js on lines 212..397
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-javascript.js on lines 1085..1270
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-json.js on lines 1085..1270
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-lua.js on lines 1085..1270
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-php.js on lines 1085..1270

                                                                                                                                                                              Duplicated Code

                                                                                                                                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                                                                                                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                                                                                                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                                                                                                                                              Tuning

                                                                                                                                                                              This issue has a mass of 1353.

                                                                                                                                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                                                                                                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                                                                                                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                                                                                                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                                                                                                                                              Refactorings

                                                                                                                                                                              Further Reading

                                                                                                                                                                              Similar blocks of code found in 7 locations. Consider refactoring.
                                                                                                                                                                              Open

                                                                                                                                                                              define("ace/lib/event_emitter",["require","exports","module"], function(require, exports, module) {
                                                                                                                                                                              "use strict";
                                                                                                                                                                              
                                                                                                                                                                              var EventEmitter = {};
                                                                                                                                                                              var stopPropagation = function() { this.propagationStopped = true; };
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-css.js on lines 399..523
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-html.js on lines 399..523
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-javascript.js on lines 212..336
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-json.js on lines 212..336
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-lua.js on lines 212..336
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-php.js on lines 212..336

                                                                                                                                                                              Duplicated Code

                                                                                                                                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                                                                                                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                                                                                                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                                                                                                                                              Tuning

                                                                                                                                                                              This issue has a mass of 1145.

                                                                                                                                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                                                                                                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                                                                                                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                                                                                                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                                                                                                                                              Refactorings

                                                                                                                                                                              Further Reading

                                                                                                                                                                              Identical blocks of code found in 7 locations. Consider refactoring.
                                                                                                                                                                              Open

                                                                                                                                                                              define("ace/worker/mirror",["require","exports","module","ace/document","ace/lib/lang"], function(require, exports, module) {
                                                                                                                                                                              "use strict";
                                                                                                                                                                              
                                                                                                                                                                              var Document = require("../document").Document;
                                                                                                                                                                              var lang = require("../lib/lang");
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-css.js on lines 1272..1319
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-html.js on lines 1272..1319
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-javascript.js on lines 1272..1319
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-json.js on lines 1272..1319
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-lua.js on lines 1272..1319
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-php.js on lines 1272..1319

                                                                                                                                                                              Duplicated Code

                                                                                                                                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                                                                                                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                                                                                                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                                                                                                                                              Tuning

                                                                                                                                                                              This issue has a mass of 398.

                                                                                                                                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                                                                                                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                                                                                                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                                                                                                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                                                                                                                                              Refactorings

                                                                                                                                                                              Further Reading

                                                                                                                                                                              Similar blocks of code found in 2 locations. Consider refactoring.
                                                                                                                                                                              Open

                                                                                                                                                                              define("ace/mode/coffee_worker",["require","exports","module","ace/lib/oop","ace/worker/mirror","ace/mode/coffee/coffee-script"], function(require, exports, module) {
                                                                                                                                                                              "use strict";
                                                                                                                                                                              
                                                                                                                                                                              var oop = require("../lib/oop");
                                                                                                                                                                              var Mirror = require("../worker/mirror").Mirror;
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src-noconflict/worker-coffee.js on lines 6849..6892

                                                                                                                                                                              Duplicated Code

                                                                                                                                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                                                                                                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                                                                                                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                                                                                                                                              Tuning

                                                                                                                                                                              This issue has a mass of 296.

                                                                                                                                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                                                                                                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                                                                                                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                                                                                                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                                                                                                                                              Refactorings

                                                                                                                                                                              Further Reading

                                                                                                                                                                              Identical blocks of code found in 2 locations. Consider refactoring.
                                                                                                                                                                              Open

                                                                                                                                                                              define("ace/mode/coffee/coffee-script",["require","exports","module","ace/mode/coffee/lexer","ace/mode/coffee/parser","ace/mode/coffee/nodes"], function(require, exports, module) {
                                                                                                                                                                              
                                                                                                                                                                                  var Lexer = require("./lexer").Lexer;
                                                                                                                                                                                  var parser = require("./parser");
                                                                                                                                                                              
                                                                                                                                                                              
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src-noconflict/worker-coffee.js on lines 6816..6847

                                                                                                                                                                              Duplicated Code

                                                                                                                                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                                                                                                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                                                                                                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                                                                                                                                              Tuning

                                                                                                                                                                              This issue has a mass of 273.

                                                                                                                                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                                                                                                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                                                                                                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                                                                                                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                                                                                                                                              Refactorings

                                                                                                                                                                              Further Reading

                                                                                                                                                                              Identical blocks of code found in 7 locations. Consider refactoring.
                                                                                                                                                                              Open

                                                                                                                                                                              define("ace/lib/oop",["require","exports","module"], function(require, exports, module) {
                                                                                                                                                                              "use strict";
                                                                                                                                                                              
                                                                                                                                                                              exports.inherits = function(ctor, superCtor) {
                                                                                                                                                                                  ctor.super_ = superCtor;
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-css.js on lines 184..210
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-html.js on lines 184..210
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-javascript.js on lines 184..210
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-json.js on lines 184..210
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-lua.js on lines 184..210
                                                                                                                                                                              samples/adminpanel/app/bower_components/ace-builds/src/worker-php.js on lines 184..210

                                                                                                                                                                              Duplicated Code

                                                                                                                                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                                                                                                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                                                                                                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                                                                                                                                              Tuning

                                                                                                                                                                              This issue has a mass of 179.

                                                                                                                                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                                                                                                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                                                                                                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                                                                                                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                                                                                                                                              Refactorings

                                                                                                                                                                              Further Reading

                                                                                                                                                                              There are no issues that match your filters.

                                                                                                                                                                              Category
                                                                                                                                                                              Status