This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Description
constructor(public path: string, public child: Url = null,
public auxiliary: Url[] =[],
public params: {[key: string]: any} = {}) {}
was:
Url(this.path, [this.child = null, this.auxiliary = [], this.params = {}]) {}
should be:
RootUrl(String path,
Url(this.path, [this.child = null, this.auxiliary = const [], this.params = const {}]) {}
const [] instead of []
const {} instead of {}