[AST] Accessors for ^= and _mixInt

This commit is contained in:
Tony Allevato
2017-05-08 19:08:09 -07:00
parent 33c385a09e
commit eda0e38069
2 changed files with 81 additions and 0 deletions

View File

@@ -462,6 +462,12 @@ public:
/// Retrieve the declaration of Swift.==(Int, Int) -> Bool.
FuncDecl *getEqualIntDecl() const;
/// Retrieve the declaration of Swift.^= (inout Int, Int) -> Void.
FuncDecl *getMutatingXorIntDecl() const;
/// Retrieve the declaration of Swift._mixInt(Int) -> Int.
FuncDecl *getMixIntDecl() const;
/// Retrieve the declaration of Array.append(element:)
FuncDecl *getArrayAppendElementDecl() const;