LCOV - code coverage report
Current view: top level - idlc/inc/idlc - astbasetype.hxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 9 10 90.0 %
Date: 2014-04-11 Functions: 3 5 60.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       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/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      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 .
      18             :  */
      19             : #ifndef _IDLC_ASTBASETYPE_HXX_
      20             : #define _IDLC_ASTBASETYPE_HXX_
      21             : 
      22             : #include <idlc/asttype.hxx>
      23             : #include <idlc/astexpression.hxx>
      24             : 
      25             : 
      26             : class AstBaseType : public AstType
      27             : {
      28             : public:
      29        9870 :     AstBaseType(const ExprType type, const OString& name, AstScope* pScope)
      30             :         : AstType(NT_predefined, name, pScope)
      31        9870 :         , m_exprType(type)
      32        9870 :         {}
      33             : 
      34           0 :     virtual ~AstBaseType() {}
      35             : 
      36          23 :     virtual bool isUnsigned() const SAL_OVERRIDE {
      37          23 :         switch (m_exprType) {
      38             :         case ET_ushort:
      39             :         case ET_ulong:
      40             :         case ET_uhyper:
      41           7 :             return true;
      42             :         default:
      43          16 :             return false;
      44             :         }
      45             :     }
      46             : 
      47        1515 :     ExprType getExprType() const
      48        1515 :         { return m_exprType; }
      49             : private:
      50             :     const ExprType m_exprType;
      51             : };
      52             : 
      53             : #endif // _IDLC_ASTBASETYPE_HXX_
      54             : 
      55             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10