brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · 9d241ea Raw
29 lines · cpp
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-exception6//7//===----------------------------------------------------------------------===//8 9#include "mlir/Tools/PDLL/Parser/CodeComplete.h"10#include "mlir/Tools/PDLL/AST/Types.h"11 12using namespace mlir;13using namespace mlir::pdll;14 15//===----------------------------------------------------------------------===//16// CodeCompleteContext17//===----------------------------------------------------------------------===//18 19CodeCompleteContext::~CodeCompleteContext() = default;20 21void CodeCompleteContext::codeCompleteTupleMemberAccess(22    ast::TupleType tupleType) {}23void CodeCompleteContext::codeCompleteOperationMemberAccess(24    ast::OperationType opType) {}25 26void CodeCompleteContext::codeCompleteConstraintName(27    ast::Type currentType, bool allowInlineTypeConstraints,28    const ast::DeclScope *scope) {}29