Skip to content
Snippets Groups Projects
Select Git revision
  • 0ec07e2cd45b0583bc657cdbfeab1df18c2337b0
  • main default
  • kinetic protected
  • hydro
  • indigo
  • obsolete/master
  • 0.3.3
  • 0.3.2
  • 0.3.1
  • 0.3.0
  • 0.1.24
  • 0.1.23
  • 0.2.1
  • 0.1.22
  • 0.1.21
  • 0.1.20
  • 0.1.19
  • 0.1.18
  • 0.1.17
  • 0.1.16
  • 0.1.15
  • 0.1.14
  • 0.1.13
  • 0.1.12
  • 0.1.11
  • 0.1.10
26 results

.classpath

Blame
  • doc.ts 619 B
    import {AstDecl} from './ast-decl/ast-decl';
    
    export class Doc {
      ast: string;
      astdecl: AstDecl;
      ragFile: string;
      line: number;
      description: string;
      apilevel: string;
      relation: string;
      params: string[]
    
      static fromJson(json: any): Doc {
        var astdecl: AstDecl = undefined;
        if (json.astdecl) {
          astdecl = AstDecl.fromJson(json.astdecl);
        }
        return {
          ast: json.ast,
          astdecl: astdecl,
          ragFile: json.ragFile,
          line: json.line,
          description: json.description,
          apilevel: json.apilevel,
          relation: json.relation,
          params: json.params,
        };
      }
    }