mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
70 lines
3.0 KiB
C++
70 lines
3.0 KiB
C++
//===-- KnownIdentifiers.def - Known identifier metaprogramming -*- C++ -*-===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See http://swift.org/LICENSE.txt for license information
|
|
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines macros used for macro-metaprogramming with compiler-known
|
|
// identifers.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef IDENTIFIER
|
|
# error Must define IDENTIFIER(Id) before including this x-macro file
|
|
#endif
|
|
|
|
#ifndef IDENTIFIER_WITH_NAME
|
|
# error Must define IDENTIFIER_WITH_NAME(Name, IdStr) before including this x-macro file
|
|
#endif
|
|
|
|
IDENTIFIER(deinit)
|
|
IDENTIFIER(init)
|
|
IDENTIFIER(self)
|
|
IDENTIFIER(Self)
|
|
IDENTIFIER(subscript)
|
|
|
|
IDENTIFIER_WITH_NAME(MatchOperator, "~=")
|
|
IDENTIFIER_WITH_NAME(NotEqualsOperator, "!=")
|
|
|
|
// Built-in identifiers
|
|
IDENTIFIER_WITH_NAME(MaxBuiltinIntegerType, "MaxBuiltinIntegerType")
|
|
IDENTIFIER_WITH_NAME(IntegerLiteralType, "IntegerLiteralType")
|
|
IDENTIFIER_WITH_NAME(ConvertFromIntegerLiteral, "convertFromIntegerLiteral")
|
|
IDENTIFIER_WITH_NAME(ConvertFromBuiltinIntegerLiteral,
|
|
"_convertFromBuiltinIntegerLiteral")
|
|
IDENTIFIER_WITH_NAME(MaxBuiltinFloatType, "MaxBuiltinFloatType")
|
|
IDENTIFIER_WITH_NAME(FloatLiteralType, "FloatLiteralType")
|
|
IDENTIFIER_WITH_NAME(ConvertFromFloatLiteral, "convertFromFloatLiteral")
|
|
IDENTIFIER_WITH_NAME(ConvertFromBuiltinFloatLiteral,
|
|
"_convertFromBuiltinFloatLiteral")
|
|
IDENTIFIER_WITH_NAME(CharacterLiteralType, "CharacterLiteralType")
|
|
IDENTIFIER_WITH_NAME(ConvertFromCharacterLiteral,
|
|
"convertFromCharacterLiteral")
|
|
IDENTIFIER_WITH_NAME(ConvertFromBuiltinCharacterLiteral,
|
|
"_convertFromBuiltinCharacterLiteral")
|
|
IDENTIFIER_WITH_NAME(ConvertFromStringLiteral, "convertFromStringLiteral")
|
|
IDENTIFIER_WITH_NAME(ConvertFromBuiltinUTF16StringLiteral,
|
|
"_convertFromBuiltinUTF16StringLiteral")
|
|
IDENTIFIER_WITH_NAME(ConvertFromBuiltinStringLiteral,
|
|
"_convertFromBuiltinStringLiteral")
|
|
IDENTIFIER_WITH_NAME(StringLiteralType,
|
|
"StringLiteralType")
|
|
IDENTIFIER_WITH_NAME(ConvertFromStringInterpolation,
|
|
"convertFromStringInterpolation")
|
|
IDENTIFIER_WITH_NAME(ConvertFromArrayLiteral, "convertFromArrayLiteral")
|
|
IDENTIFIER_WITH_NAME(ConvertFromDictionaryLiteral,
|
|
"convertFromDictionaryLiteral")
|
|
IDENTIFIER_WITH_NAME(GetLogicValue, "getLogicValue")
|
|
IDENTIFIER_WITH_NAME(GetBuiltinLogicValue, "_getBuiltinLogicValue")
|
|
IDENTIFIER_WITH_NAME(GetArrayBoundValue, "getArrayBoundValue")
|
|
IDENTIFIER_WITH_NAME(GetBuiltinArrayBoundValue, "_getBuiltinArrayBoundValue")
|
|
|
|
#undef IDENTIFIER
|
|
#undef IDENTIFIER_WITH_NAME
|