Home Reference Source Repository

src/noParentStateErrorMsg.js

  1.  
  2. /** @ignore */
  3. export default function noParentStateErrorMsg(name, parentImpl) {
  4. const path = parentImpl ?parentImpl.dotPath() :"undefined";
  5.  
  6. return `No parent state for non-root shadow property: name=${name}, parent=${path}`;
  7. }