-
-
Notifications
You must be signed in to change notification settings - Fork 379
Replace BasicType
by PrimaryType
#3917
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
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 |
There have been some unintentional changes slipping through. I don’t know how or why… I’ll look into this tomorrow. |
207339a
to
d4e013b
Compare
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
Rename
BaseClassList
→SupertypeList
so it can be re-used for interfaces.Streamline
SuperClassOrInterface
andInterfaces
/Interface
to*BasicTypes*
and re-useBasicType
from type.dd. The entitiesSuperClassOrInterface
andInterfaces
/Interface
are unnecessary; giving these different names has no value because the parser can’t distinguish them anyway. Naming aclass
type later in the list is a semantic error.Among the goals of this PR: A base class or implemented interface should not be spelled out in code with qualifiers, e.g.
const(Object)
, because it’s equivalent toObject
. if amixin
ortypeof
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
toPrimaryTypeWithSuffixes
interface.dd
Replace
BaseInterfaceList
→SupertypeList
There is no value in distinguishing the list of a class and an interface.
Among the goals of this PR: A base interface should not be spelled out in code with qualifiers, e.g.
const(Interface)
, because it’s equivalent toInterface
. if amixin
ortypeof
resolves to a qualified type, the qualifiers are still ignored. This is about parsing only.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.Remove the clauses that allow
Constraint
followed byBaseClassList
orBaseInterfaceList
as those are not actually supported by DMD and make little sense. (Note:BaseClassList
andBaseInterfaceList
were also changed toSupertypeList
.)type.dd
Rephrased a paragraph mentioning “basic type” with no actual connection to
BasicType
.