1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <fehelper.hxx>
21 #include <errorhandler.hxx>
24 FeDeclarator::FeDeclarator(const OString
& name
)
29 FeDeclarator::~FeDeclarator()
33 bool FeDeclarator::checkType(AstDeclaration
const * type
) const
36 sal_Int32 count
= m_name
.lastIndexOf( ':' );
38 tmp
= m_name
.copy( count
+1 );
40 return tmp
!= type
->getLocalName();
43 AstType
const * FeDeclarator::compose(AstDeclaration
const * pDecl
)
45 if ( pDecl
== nullptr )
49 if ( !pDecl
->isType() )
51 ErrorHandler::noTypeError(pDecl
);
54 return static_cast<const AstType
*>(pDecl
);
57 FeInheritanceHeader::FeInheritanceHeader(
58 NodeType nodeType
, OString
* pName
, OString
const * pInherits
,
59 std::vector
< OString
> const * typeParameters
)
60 : m_nodeType(nodeType
)
62 , m_pInherits(nullptr)
64 if (typeParameters
!= nullptr) {
65 m_typeParameters
= *typeParameters
;
67 initializeInherits(pInherits
);
70 void FeInheritanceHeader::initializeInherits(OString
const * pInherits
)
75 AstScope
* pScope
= idlc()->scopes()->topNonNull();
76 AstDeclaration
* pDecl
= pScope
->lookupByName(*pInherits
);
79 AstDeclaration
const * resolved
= resolveTypedefs(pDecl
);
80 if ( resolved
->getNodeType() == getNodeType()
81 && (resolved
->getNodeType() != NT_interface
82 || static_cast< AstInterface
const * >(
83 resolved
)->isDefined()) )
85 if ( ErrorHandler::checkPublished( pDecl
) )
92 ErrorHandler::inheritanceError(
93 getNodeType(), getName(), pDecl
);
98 ErrorHandler::lookupError(*pInherits
);
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */