[ast] Remove IsCast
This was missed in the general removal, cleanup. Change-Id: I7912bb86e73cd9e38d497fab5995f7740a9dfbc6 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/29000 Commit-Queue: David Neto <dneto@google.com> Reviewed-by: David Neto <dneto@google.com>
This commit is contained in:
parent
571bce6b8d
commit
816764dbd4
|
@ -52,10 +52,6 @@ bool Expression::IsCall() const {
|
|||
return false;
|
||||
}
|
||||
|
||||
bool Expression::IsCast() const {
|
||||
return false;
|
||||
}
|
||||
|
||||
bool Expression::IsIdentifier() const {
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -50,8 +50,6 @@ class Expression : public Node {
|
|||
virtual bool IsBitcast() const;
|
||||
/// @returns true if this is a call expression
|
||||
virtual bool IsCall() const;
|
||||
/// @returns true if this is a cast expression
|
||||
virtual bool IsCast() const;
|
||||
/// @returns true if this is an identifier expression
|
||||
virtual bool IsIdentifier() const;
|
||||
/// @returns true if this is an constructor expression
|
||||
|
|
Loading…
Reference in New Issue