More friendly Css parser error messages

This commit is contained in:
Nedyalko Nikolov
2015-03-13 16:45:36 +02:00
parent 075bd3c957
commit d56d036e6a
10 changed files with 111 additions and 44 deletions

1
trace/trace.d.ts vendored
View File

@@ -68,6 +68,7 @@ declare module "trace" {
export var Navigation: string;
export var Test: string;
export var Binding: string;
export var Error: string;
export var All: string;

View File

@@ -107,7 +107,8 @@ export module categories {
export var Navigation = "Navigation";
export var Test = "Test";
export var Binding = "Binding";
export var All = VisualTreeEvents + "," + Layout + "," + Style + "," + ViewHierarchy + "," + NativeLifecycle + "," + Debug + "," + Navigation + "," + Test + "," + Binding;
export var Error = "Error";
export var All = VisualTreeEvents + "," + Layout + "," + Style + "," + ViewHierarchy + "," + NativeLifecycle + "," + Debug + "," + Navigation + "," + Test + "," + Binding + "," + Error;
export var separator = ",";