Javascript rails/browserify 应用程序的语法错误

Javascript syntax error on rails/browserify application

我一直在尝试通过 Heroku、Nginx 和 Apache 部署我的 rails/browserify 应用程序,但我一直 运行 陷入同样的​​错误。当资产通过 bundle exec rake assets:precompile db:migrate RAILS_ENV=production 预编译时,我的一个 JS classes 会产生语法错误。我在这里发现了一个类似的问题:ES6 类: Unexpected token in script? 但我在构造函数或方法之外没有任何变量声明。

错误:

rake aborted!
ExecJS::RuntimeError: SyntaxError: Unexpected token: name (Game)
JS_Parse_Error.get ((execjs):3538:621)
(execjs):4060:47
(execjs):1:102
Object.<anonymous> ((execjs):1:120)
Module._compile (module.js:571:32)
Object.Module._extensions..js (module.js:580:10)
Module.load (module.js:488:32)
tryModuleLoad (module.js:447:12)
Function.Module._load (module.js:439:3)
Module.runMain (module.js:605:10)

产生语法错误的 Javascript class:

class Game {

  constructor(attributes) {
      this.id = attributes.id;
      this.characters = attributes.characters;
      this.quotes = attributes.game_quotes;
      this.state = attributes.state;
      this.completed = attributes.completed;
  }

  score() {
      if (this.completed == true) {
          var score = 0;
          for (var i = 0; i < this.state.length; i++) {
              if (this.state[i] == true) {
                  score++;
              }
          }
          return score;
      } else {
          return "Game Incomplete";
      }
  }

  percentageScore() {
      if (this.score() >= 0) {
          return (this.score() * 10 + "%");
      } else {
          return "Game Incomplete";
      }
  }

  }

语法错误在哪里?

如果您需要一些上下文,这里是我的应用程序存储库的 link:Repository

我们将不胜感激来自社区的任何帮助。如果您能提供任何建议,请提前致谢。

通过注释掉 config/environments/production.rb

中的以下行,错误消失了

config.assets.js_compressor = ...