File

src/app/shared/services/parser.service.ts

Index

Methods

Constructor

constructor()

Methods

parseDsl
parseDsl(text: string, mode?: string)
Parameters :
Name Type Optional Description
text string
mode string true
Returns : any
import { Injectable } from '@angular/core';
import { Parser } from './parser';

@Injectable()
export class ParserService {

    constructor() {
    }

    parseDsl(text: string, mode?: string) {
        return Parser.parse(text, mode);
    }

}

results matching ""

    No results matching ""