LCOV - code coverage report
Current view: top level - gfx/skia/skia/src/sksl/ast - SkSLASTDoStatement.h (source / functions) Hit Total Coverage
Test: output.info Lines: 0 7 0.0 %
Date: 2017-07-14 16:53:18 Functions: 0 4 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*
       2             :  * Copyright 2016 Google Inc.
       3             :  *
       4             :  * Use of this source code is governed by a BSD-style license that can be
       5             :  * found in the LICENSE file.
       6             :  */
       7             : 
       8             : #ifndef SKSL_ASTDOSTATEMENT
       9             : #define SKSL_ASTDOSTATEMENT
      10             : 
      11             : #include "SkSLASTStatement.h"
      12             : 
      13             : namespace SkSL {
      14             : 
      15             : /**
      16             :  * A 'do' loop.
      17             :  */
      18           0 : struct ASTDoStatement : public ASTStatement {
      19           0 :     ASTDoStatement(Position position, std::unique_ptr<ASTStatement> statement,
      20             :                    std::unique_ptr<ASTExpression> test)
      21           0 :     : INHERITED(position, kDo_Kind)
      22           0 :     , fStatement(std::move(statement))
      23           0 :     , fTest(std::move(test)) {}
      24             : 
      25           0 :     String description() const override {
      26           0 :         return "do " + fStatement->description() + " while (" + fTest->description() + ");";
      27             :     }
      28             : 
      29             :     const std::unique_ptr<ASTStatement> fStatement;
      30             :     const std::unique_ptr<ASTExpression> fTest;
      31             : 
      32             :     typedef ASTStatement INHERITED;
      33             : };
      34             : 
      35             : } // namespace
      36             : 
      37             : #endif

Generated by: LCOV version 1.13