isUserFacing property

bool get isUserFacing

Returns true if this type is intended for user code.

Implementation

bool get isUserFacing => const {
  LEType.functionNode,
  LEType.inverseFunctionNode,
  LEType.fractionNode,
  LEType.squareRootNode,
  LEType.cubeRootNode,
  LEType.nthRootNode,
  LEType.powerNode,
  LEType.integralNode,
  LEType.summationNode,
  LEType.numberLeaf,
  LEType.operatorLeaf,
  LEType.variableLeaf,
  LEType.symbolLeaf,
  LEType.specialSymbolLeaf,
  LEType.textLeaf,
}.contains(this);