[LLVM] Fix Maintainers.md formatting (NFC)
[llvm-project.git] / mlir / lib / Tools / PDLL / Parser / CodeComplete.cpp
blob9d241ea279641c0a6732944ed2d1093880cfa17d
1 //===- CodeComplete.cpp ---------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "mlir/Tools/PDLL/Parser/CodeComplete.h"
10 #include "mlir/Tools/PDLL/AST/Types.h"
12 using namespace mlir;
13 using namespace mlir::pdll;
15 //===----------------------------------------------------------------------===//
16 // CodeCompleteContext
17 //===----------------------------------------------------------------------===//
19 CodeCompleteContext::~CodeCompleteContext() = default;
21 void CodeCompleteContext::codeCompleteTupleMemberAccess(
22 ast::TupleType tupleType) {}
23 void CodeCompleteContext::codeCompleteOperationMemberAccess(
24 ast::OperationType opType) {}
26 void CodeCompleteContext::codeCompleteConstraintName(
27 ast::Type currentType, bool allowInlineTypeConstraints,
28 const ast::DeclScope *scope) {}