-
-
Notifications
You must be signed in to change notification settings - Fork 368
New issue
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
Replace BasicType
by PrimaryType
#3917
base: master
Are you sure you want to change the base?
Conversation
Thanks for your pull request and interest in making D better, @Bolpat! We are looking forward to reviewing it, and you should be hearing from a maintainer soon.
Please see CONTRIBUTING.md for more information. If you have addressed all reviews or aren't sure how to proceed, don't hesitate to ping us with a simple comment. Bugzilla referencesYour PR doesn't reference any Bugzilla issue. If your PR contains non-trivial changes, please reference a Bugzilla issue or create a manual changelog. |
BasicType
by PrimaryType
mostlyBasicType
by PrimaryType
Has that DIP been accepted? DMD uses |
@@ -1644,7 +1601,7 @@ $(GNAME PostfixExpression): | |||
$(GSELF PostfixExpression) $(D ++) | |||
$(GSELF PostfixExpression) $(D --) | |||
$(GSELF PostfixExpression) $(D $(LPAREN)) $(GLINK NamedArgumentList)$(OPT) $(D $(RPAREN)) | |||
$(GLINK2 type, TypeCtors)$(OPT) $(GLINK2 type, BasicType) $(D $(LPAREN)) $(GLINK NamedArgumentList)$(OPT) $(D $(RPAREN)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why remove $(GLINK2 type, TypeCtors)$(OPT)
? The following compiles with DMD:
auto x = const int(5);
$(GLINK Interface) $(D ,) $(GSELF Interfaces) | ||
|
||
$(GNAME Interface): | ||
$(GLINK2 type, BasicType) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SuperClassOrInterface and Interfaces are still referenced by AnonBaseClassList and BaseInterfaceList.
$(GNAME PrimaryType): | ||
$(GLINK BasicType) | ||
$(D __vector) $(D $(LPAREN)) $(GLINK Type) $(D $(RPAREN)) | ||
$(GLINK TypeCtor)$(OPT) $(D $(LPAREN)) $(GLINK Type) $(D $(RPAREN)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be without $(OPT)
for now? This change is from your DIP, but I thought this pull request is only a preparation.
There have been some unintentional changes slipping through. I don’t know how or why… I’ll look into this tomorrow. |
Essentially, this change renames
BasicType
toPrimaryType
and givesBasicType
a new meaning.The entity
BasicType
and the term basic type will be used for the non-recursive rules in the type grammar. The recursive rules areTypeCtor(Type)
and__vector(Type)
. Those would constitute elaborate primary types (with elaborate = non-basic). The non-recursive rules are e.g. fundamental types, identifiers,mixin
types,typeof
types, etc., stuff that doesn’t immediately require parsing aType
again.This is in prospect of the Primary Type Syntax DIP which, if accepted, will make
PrimaryType
truly be the type equivalent toPrimaryExpression
in the expression syntax. Note that any DIP that adds tuples to the grammar based on parentheses, e.g. one that makes(int, int)
a type, will profit from this change because such a type would be an elaborate primary type, and parts of the grammar spec (or forum discussions) can then easily distinguish primary and basic types in places where parsing ambiguity must be avoided.In particular, this change allows the grammar spec to require a non-trivial type construct that is not a qualified type in code. This makes sense in places where the qualifier would be ignored if given, e.g. base class lists and, possibly in the future, the argument of
__vector
.I’m not that deep into the SIMD types, so I left it alone, but as far as I understand, it could be constrained syntactically so that providing an ill-formed vector type fails fast. Essentially, a vector type would probably be
__vector(BasicType TypeSuffixesopt)
where theTypeSuffixes
are optional because ifBasicType
is something other than aFundamentalType
, it could already be a static array.The parser changes required by this change are implemented in this PR.
Changes
Most changes are
BasicType
toPrimaryType
.class.dd
Remove the unnecessary
SuperClassOrInterface
andInterfaces
/Interface
grammar entities, those are allBasicType
now. A base class should not be spelled out in code as e.g.const(Object)
as it’s equivalent toObject
. if amixin
or ´typeof` resolves to a qualified type, the qualifiers are still ignored. This is about parsing only.declaration.dd
Rephrased a paragraph mentioning “basic type” with no actual connection to
BasicType
.expression.dd
Also renames
BasicTypeWithSuffixes
toSuffixedPrimaryType
simd.dd
Because I inlined the
Vector
grammar entity, some rephrasing was needed.template.dd
For
TemplateValueParameter
, I changedBasicType
toType
because this is what the compiler implements and there’s no good reason to change the compiler. This change would also encompass the Primary Type Syntax DIP and (likely) any tuple DIP.type.dd
Rephrased a paragraph mentioning “basic type” with no actual connection to
BasicType
.