test for index-access style, make object immutable, #1396

This commit is contained in:
Johannes Rieken
2016-08-25 11:56:40 +02:00
parent 043ff9f76e
commit e3c810ec52
3 changed files with 19 additions and 1 deletions

View File

@@ -61,7 +61,8 @@ export class ExtHostConfiguration extends ExtHostConfigurationShape {
}
return result;
};
return result;
return Object.freeze(result);
}
private static _lookUp(section: string, config: any) {