LCOV - code coverage report
Current view: top level - gfx/skia/skia/src/sksl/ir - SkSLSymbol.h (source / functions) Hit Total Coverage
Test: output.info Lines: 0 4 0.0 %
Date: 2017-07-14 16:53:18 Functions: 0 3 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_SYMBOL
       9             : #define SKSL_SYMBOL
      10             : 
      11             : #include "SkSLIRNode.h"
      12             : 
      13             : namespace SkSL {
      14             : 
      15             : /**
      16             :  * Represents a symboltable entry.
      17             :  */
      18           0 : struct Symbol : public IRNode {
      19             :     enum Kind {
      20             :         kFunctionDeclaration_Kind,
      21             :         kUnresolvedFunction_Kind,
      22             :         kType_Kind,
      23             :         kVariable_Kind,
      24             :         kField_Kind
      25             :     };
      26             : 
      27           0 :     Symbol(Position position, Kind kind, String name)
      28           0 :     : INHERITED(position)
      29             :     , fKind(kind)
      30           0 :     , fName(std::move(name)) {}
      31             : 
      32             :     const Kind fKind;
      33             :     const String fName;
      34             : 
      35             :     typedef IRNode INHERITED;
      36             : };
      37             : 
      38             : } // namespace
      39             : 
      40             : #endif

Generated by: LCOV version 1.13