README: update provider tutorial

This commit is contained in:
Kevin Jahns
2019-05-12 11:18:43 +02:00
parent 81a529d8dc
commit c80f446b5f
3 changed files with 8 additions and 6 deletions

View File

@@ -285,7 +285,7 @@ export class AbstractItem extends AbstractStruct {
* @private
*/
copy (id, left, origin, right, rightOrigin, parent, parentSub) {
throw new Error('unimplemented')
throw error.methodUnimplemented()
}
/**
@@ -393,7 +393,7 @@ export class AbstractItem extends AbstractStruct {
* @private
*/
splitAt (transaction, diff) {
throw new Error('unimplemented')
throw error.methodUnimplemented()
}
/**

View File

@@ -101,7 +101,7 @@ export class AbstractType {
* @private
*/
_copy () {
throw new Error('unimplemented')
throw error.methodUnimplemented()
}
/**