Skip to content
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

add RefCast to Expressions #4164

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions spec/expression.dd
Original file line number Diff line number Diff line change
Expand Up @@ -1199,7 +1199,8 @@ $(H3 $(LNAME2 cast_expressions, Cast Expressions))
$(GRAMMAR
$(GNAME CastExpression):
$(D cast $(LPAREN)) $(GLINK2 type, Type) $(D $(RPAREN)) $(GLINK UnaryExpression)
$(GLINK CastQual)
$(GLINK RefCast)
$(GLINK QualifierCast)
)

$(P A $(I CastExpression) converts the $(I UnaryExpression)
Expand Down Expand Up @@ -1598,14 +1599,31 @@ $(H4 $(LNAME2 cast_struct, Structs))
---
)

$(H4 $(LNAME2 refcast, Reference Cast))

$(GRAMMAR
$(GNAME RefCast):
$(D cast $(LPAREN)) $(D ref) $(GLINK2 type, Type) $(D $(RPAREN)) $(GLINK UnaryExpression)
)

$(P A $(I RefCast) takes a $(I UnaryExpression) representing an lvalue and forcibly changes
its type to $(I Type). It is equivalent to the expression $(D *cast(Type*)&UnaryExpression).
)

---
int i = 73;
float f = *cast(float*)&i; // reinterprets the integer bit pattern as a float
float g = cast(ref float)i; // equivalent to the previous statement
---

$(H4 $(LNAME2 cast_qualifier, Qualifier Cast))

$(GRAMMAR
$(GNAME CastQual):
$(GNAME QualifierCast):
$(D cast $(LPAREN)) $(GLINK2 type, TypeCtors)$(OPT) $(D $(RPAREN)) $(GLINK UnaryExpression)
)

$(P A $(I CastQual) replaces the qualifiers in the type of
$(P A $(I QualifierCast) replaces the qualifiers in the type of
the $(I UnaryExpression):)

$(SPEC_RUNNABLE_EXAMPLE_COMPILE
Expand Down