refactor: prefer const over var for constants

Closes #3818
This commit is contained in:
Victor Berchet
2015-08-25 11:22:21 -07:00
parent b29b045d78
commit ecf6ba3974
5 changed files with 8 additions and 9 deletions

View File

@ -59,7 +59,7 @@ function _convertLocalsToVariableBindings(locals: Locals): any[] {
return variableBindings;
}
export var PROP_NAME = 'propName';
export const PROP_NAME = 'propName';
/**
* In this case, we expect `id` and `expression` to be the same string.