Class PointerName
Defines a poiner name: a qualified name that is turned into a pointer.
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Flame
Assembly: Flame.dll
Syntax
public class PointerName : UnqualifiedName, IEquatable<UnqualifiedName>, IEquatable<PointerName>
Constructors
| Improve this Doc View SourcePointerName(QualifiedName, PointerKind)
Creates a pointer name from a qualified name and a pointer kind.
Declaration
public PointerName(QualifiedName elementName, PointerKind kind)
Parameters
Type | Name | Description |
---|---|---|
QualifiedName | elementName | The name of the element type in this pointer name. |
PointerKind | kind | The kind of pointer named by this pointer name. |
Properties
| Improve this Doc View SourceElementName
Gets the qualified name that is turned into a pointer.
Declaration
public QualifiedName ElementName { get; }
Property Value
Type | Description |
---|---|
QualifiedName |
Kind
Gets this pointer name's pointer kind.
Declaration
public PointerKind Kind { get; }
Property Value
Type | Description |
---|---|
PointerKind |
Methods
| Improve this Doc View SourceEquals(PointerName)
Declaration
public bool Equals(PointerName other)
Parameters
Type | Name | Description |
---|---|---|
PointerName | other |
Returns
Type | Description |
---|---|
System.Boolean |
Equals(UnqualifiedName)
Checks if this unqualified name equals another unqualified name.
Declaration
public override bool Equals(UnqualifiedName Other)
Parameters
Type | Name | Description |
---|---|---|
UnqualifiedName | Other |
Returns
Type | Description |
---|---|
System.Boolean |
|
Overrides
| Improve this Doc View SourceGetHashCode()
Gets a hash code for this unqualified name.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 | A hash code. |
Overrides
| Improve this Doc View SourceToString()
Gets a string representation for this unqualified name.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A string representation. |
Overrides
Implements
System.IEquatable<T>
System.IEquatable<T>