https://issues.dlang.org/show_bug.cgi?id=15403
Issue ID: 15403
Summary: [internal] FileExp represents ImportExpression, the
AST class naming is not intuitive
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Keywords: ice
Severity: trivial
Priority: P1
Component: dmd
Assignee: [email protected]
Reporter: [email protected]
In expression.d:
extern (C++) final class FileExp : UnaExp
{
public:
extern (D) this(Loc loc, Expression e)
{
super(loc, TOKimport, __traits(classInstanceSize, FileExp), e);
}
By recent issue 15394 fix (PR #5294), it's changed to use TOKimport. So I think
it's a time to rename FileExp to ImportExp.
--