UNPKG

@graphprotocol/graph-cli

Version:

CLI for building for and deploying to The Graph

216 lines (215 loc) • 5.73 kB
class Param { name; type; constructor(name, type) { this.name = name; this.type = type; this.name = name; this.type = type; } toString() { return `${this.name}: ${this.type.toString()}`; } } class Method { name; params; returnType; body; constructor(name, params, returnType, body) { this.name = name; this.params = params; this.returnType = returnType; this.body = body; this.name = name; this.params = params || []; this.returnType = returnType; this.body = body || ''; } toString() { return ` ${this.name}(${this.params.map(param => param.toString()).join(', ')})${this.returnType ? `: ${this.returnType.toString()}` : ''} {${this.body} } `; } } class StaticMethod { name; params; returnType; body; constructor(name, params, returnType, body) { this.name = name; this.params = params; this.returnType = returnType; this.body = body; this.name = name; this.params = params || []; this.returnType = returnType || 'void'; this.body = body || ''; } toString() { return ` static ${this.name}(${this.params.map(param => param.toString()).join(', ')})${this.returnType ? `: ${this.returnType.toString()}` : ''} {${this.body} } `; } } class Class { name; extends; methods; members; export; constructor(name, options) { this.name = name; this.name = name; this.extends = options.extends; this.methods = []; this.members = []; this.export = options.export || false; } addMember(member) { this.members.push(member); } addMethod(method) { this.methods.push(method); } toString() { return ` ${this.export ? 'export' : ''} class ${this.name}${this.extends ? ` extends ${this.extends}` : ''} { ${this.members.map(member => member.toString()).join('\n')} ${this.methods.map(method => method.toString()).join('')} } `; } } class ClassMember { name; type; constructor(name, type) { this.name = name; this.type = type; this.name = name; this.type = type; } toString() { return ` ${this.name}: ${this.type.toString()}`; } } class NamedType { name; constructor(name) { this.name = name; this.name = name; } toString() { return this.name; } capitalize() { this.name = this.name.charAt(0).toUpperCase() + this.name.slice(1); return this; } /** * Returns the default value for the type, or null if the type is not a primitive * * Learn more: https://www.assemblyscript.org/types.html */ getPrimitiveDefault() { const isPrimitive = this.isPrimitive(); if (isPrimitive) { switch (this.name) { case 'boolean': return false; case 'u8': case 'i8': case 'u16': case 'i16': case 'u32': case 'i32': case 'u64': case 'i64': case 'f32': case 'f64': case 'usize': case 'isize': return 0; default: throw new Error(`Unknown primitive type: ${this.name}`); } } return null; } isPrimitive() { const primitives = [ 'boolean', 'u8', 'i8', 'u16', 'i16', 'u32', 'i32', 'u64', 'i64', 'f32', 'f64', 'usize', 'isize', ]; return primitives.includes(this.name); } } class ArrayType { inner; name; constructor(inner) { this.inner = inner; this.inner = inner; this.name = `Array<${inner.toString()}>`; } toString() { return this.name; } } class NullableType { inner; constructor(inner) { this.inner = inner; this.inner = inner; } toString() { return `${this.inner.toString()} | null`; } } class ModuleImports { nameOrNames; module; constructor(nameOrNames, module) { this.nameOrNames = nameOrNames; this.module = module; this.nameOrNames = nameOrNames; this.module = module; } toString() { return `import { ${typeof this.nameOrNames === 'string' ? this.nameOrNames : this.nameOrNames.join(',')} } from "${this.module}"`; } } const namedType = (name) => new NamedType(name); const arrayType = (name) => new ArrayType(name); const param = (name, type) => new Param(name, type); const method = (name, params, returnType, body) => new Method(name, params, returnType, body); const staticMethod = (name, params, returnType, body) => new StaticMethod(name, params, returnType, body); const klass = (name, options) => new Class(name, options); const klassMember = (name, type) => new ClassMember(name, type); const nullableType = (type) => new NullableType(type); const moduleImports = (nameOrNames, module) => new ModuleImports(nameOrNames, module); const GENERATED_FILE_NOTE = ` // THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. `; export { ArrayType, arrayType, Class, ClassMember, // Utilities GENERATED_FILE_NOTE, klass, klassMember, Method, method, ModuleImports, moduleImports, NamedType, // Code generators namedType, NullableType, nullableType, // Types Param, param, StaticMethod, staticMethod, };