mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
64 lines
2.1 KiB
C++
64 lines
2.1 KiB
C++
//===--- ParseBridging.h --------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2023 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SWIFT_PARSE_PARSEBRIDGING_H
|
|
#define SWIFT_PARSE_PARSEBRIDGING_H
|
|
|
|
#include "swift/AST/ASTBridging.h"
|
|
#include "swift/Basic/BasicBridging.h"
|
|
|
|
#ifdef USED_IN_CPP_SOURC
|
|
#include "swift/Parse/Parser.h"
|
|
#else
|
|
namespace swift {
|
|
class Parser;
|
|
}
|
|
#endif
|
|
|
|
SWIFT_BEGIN_NULLABILITY_ANNOTATIONS
|
|
|
|
class BridgedLegacyParser {
|
|
swift::Parser *_Nonnull const handle;
|
|
|
|
public:
|
|
#ifdef USED_IN_CPP_SOURCE
|
|
BridgedLegacyParser(swift::Parser &P) : handle(&P) {}
|
|
|
|
swift::Parser &unbridged() const { return *handle; }
|
|
#endif
|
|
};
|
|
|
|
SWIFT_NAME("BridgedLegacyParser.parseExpr(self:_:_:_:)")
|
|
BridgedExpr BridgedLegacyParser_parseExpr(BridgedLegacyParser,
|
|
BridgedSourceLoc loc,
|
|
BridgedDeclContext DC,
|
|
bool isExprBasic);
|
|
|
|
SWIFT_NAME("BridgedLegacyParser.parseDecl(self:_:_:)")
|
|
BridgedDecl BridgedLegacyParser_parseDecl(BridgedLegacyParser,
|
|
BridgedSourceLoc loc,
|
|
BridgedDeclContext DC);
|
|
|
|
SWIFT_NAME("BridgedLegacyParser.parseStmt(self:_:_:)")
|
|
BridgedStmt BridgedLegacyParser_parseStmt(BridgedLegacyParser,
|
|
BridgedSourceLoc loc,
|
|
BridgedDeclContext DC);
|
|
|
|
SWIFT_NAME("BridgedLegacyParser.parseType(self:_:_:)")
|
|
BridgedTypeRepr BridgedLegacyParser_parseType(BridgedLegacyParser,
|
|
BridgedSourceLoc loc,
|
|
BridgedDeclContext DC);
|
|
|
|
SWIFT_END_NULLABILITY_ANNOTATIONS
|
|
|
|
#endif // SWIFT_PARSE_PARSEBRIDGING_H
|