We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如下代码:
import {aaa} from './aaa'; // namespace: \someModule\ let a = { aaa: aaa };
现在可以正确翻译成:
require_once(dirname(__FILE__) . '/' . "./aaa.php"); $a = array( "aaa" => "\someModule\aaa" );
但是如果使用简写形式:
import {aaa} from './aaa'; // namespace: \someModule\ let a = { aaa };
从 ShorthandPropertyAssignment.name 中不能查找到 import 部分,无法添加上 namespace。
require_once(dirname(__FILE__) . '/' . "./aaa.php"); $a = array( "aaa" => ""aaa"" );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
如下代码:
现在可以正确翻译成:
但是如果使用简写形式:
从 ShorthandPropertyAssignment.name 中不能查找到 import 部分,无法添加上 namespace。
The text was updated successfully, but these errors were encountered: