All files / src/components/GdbComponents/LocalVariable LocalVariable.jsx

100% Statements 21/21
100% Branches 1/1
100% Functions 1/1
100% Lines 21/21

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 221x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x  
import React from "react";
import "./LocalVariable.css";
 
const LocalVariable = () => {
  return (
    <div>
      {/* LocalVariable */}
      <div className="localVariable">
        <a>RAD_T 0.214124123 const double</a>
        <a>angle 380 double</a>
        <a>+globalshred std::__1::shared_ptr</a>
        <a>+globalshred std::__1::shared_ptr</a>
        <a>+globalshred std::__1::shared_ptr</a>
        <a>+raw_ptr 0x010010002d0 SimpleType *</a>
        <a>result -7.23123124124342345</a>
      </div>
    </div>
  );
};
 
export default LocalVariable;