Skip to content

Commit

Permalink
fixed lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Forchapeatl authored Sep 24, 2024
1 parent b67f509 commit 753869e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions javascript/packages/fury/lib/gen/builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,15 @@ import { Scope } from "./scope";
import { getMeta } from "../meta";
import { TypeDescription } from "../description";
import Fury from "../fury";
import { TypeMeta } from '../meta/TypeMeta';
import { TypeMeta } from "../meta/TypeMeta";
import { BinaryReader } from "../reader";

class TypeMetaBuilder{
constructor(private fury: string){
class TypeMetaBuilder {
constructor(private fury: string) {

}
from_bytes(reader: string){

from_bytes(reader: string) {
return `${this.fury}.typeMeta.from_bytes(${reader})`;
}
}
Expand Down Expand Up @@ -334,7 +335,6 @@ export class CodecBuilder {
this.classResolver = new ClassResolverBuilder(cr);
this.referenceResolver = new ReferenceResolverBuilder(rr);
this.typeMeta = new TypeMetaBuilder("fury"); // Initialize the TypeMetaWrapper

}

furyName() {
Expand Down

0 comments on commit 753869e

Please sign in to comment.