{"version":3,"sources":["https://lively-kernel.org/lively4/swd21-pipes-and-filters/demos/swd21/pipes-and-filters/bufferPipe.js"],"names":["BufferPipeMock","constructor","stack","push","newData","pull","pop"],"mappings":";;;;;;;;AACe,YAAMA,cAAN,CAAoB;;AAEjCC,sBAAc;AACZ,eAAKC,KAAL,GAAa,EAAb;AACD;;AAGDC,aAAKC,OAAL,EAAc;AACZ,eAAKF,KAAL,CAAWC,IAAX,CAAgBC,OAAhB;AACD;;AAEDC,eAAO;AACL,iBAAO,KAAKH,KAAL,CAAWI,GAAX,EAAP;AACD;;AAbgC;;yBAAdN,c;;;;;;;;6BAAAA,+C","file":"bufferPipe.js","sourcesContent":["\nexport default class BufferPipeMock{\n    \n  constructor() {\n    this.stack = [];\n  }\n  \n  \n  push(newData) {\n    this.stack.push(newData)\n  }\n  \n  pull() {\n    return this.stack.pop()\n  }\n  \n}"]}