2
0
mirror of synced 2025-02-25 04:25:16 +00:00

22 lines
540 B
TypeScript
Raw Normal View History

2019-05-14 18:25:46 -04:00
"use strict";
import { Coder, Reader, Writer } from "./abstract-coder";
// Clones the functionality of an existing Coder, but without a localName
export class AnonymousCoder extends Coder {
private coder: Coder;
constructor(coder: Coder) {
super(coder.name, coder.type, undefined, coder.dynamic);
this.coder = coder;
}
encode(writer: Writer, value: any): number {
return this.coder.encode(writer, value);
}
decode(reader: Reader): any {
return this.coder.decode(reader);
}
}