google/closure-compiler

require with a substitution-free template string is not recognized by process_common_js_modules

Open

#2,626 建立於 2017年8月21日

在 GitHub 查看
 (4 留言) (0 反應) (0 負責人)Java (1,197 fork)batch import
P2help wanted

倉庫指標

Star
 (7,176 star)
PR 合併指標
 (平均合併 3天 4小時) (30 天內合併 1 個 PR)

描述

I'm using the compiler with the process_common_js option set to true.

The following code works fine:

/** @const */
const update = require( "./update.js" );

However, switching to a substitution-free template string breaks:

/** @const */
const update = require( `./update.js` );

resulting in:

src/main.js:8: ERROR - variable require is undeclared
const update = require( `./update.js` );
               ^^^^^^^

The code style of the project I'm working on imposes template strings wherever syntactically possible (only object keys get a pass and can use double quotes). Of course, this does include paths in require statements. Sadly, it seems the CommonJS machinery does not recognize such statements as processable.

As a workaround, I can break from the code style but it is clearly not ideal and it would be really nice if the compiler was able to handle this.

貢獻者指南