2017-10-19 18:55:27 +02:00
|
|
|
// internal naming scheme
|
|
|
|
|
2018-01-13 23:38:07 +01:00
|
|
|
/** Path delimited inserted between file system levels. */
|
2017-12-27 19:17:29 +01:00
|
|
|
export const PATH_DELIMITER = "/";
|
2018-01-13 23:38:07 +01:00
|
|
|
/** Substitution used to indicate the parent directory. */
|
2017-12-27 19:17:29 +01:00
|
|
|
export const PARENT_SUBST = "..";
|
2018-01-13 23:38:07 +01:00
|
|
|
/** Function name prefix used for getters. */
|
2017-12-27 19:17:29 +01:00
|
|
|
export const GETTER_PREFIX = "get:";
|
2018-01-13 23:38:07 +01:00
|
|
|
/** Function name prefix used for setters. */
|
2017-12-27 19:17:29 +01:00
|
|
|
export const SETTER_PREFIX = "set:";
|
2018-01-13 23:38:07 +01:00
|
|
|
/** Delimiter used between class names and instance members. */
|
2017-12-27 19:17:29 +01:00
|
|
|
export const INSTANCE_DELIMITER = "#";
|
2018-01-13 23:38:07 +01:00
|
|
|
/** Delimited used between class and namespace names and static members. */
|
2017-12-27 19:17:29 +01:00
|
|
|
export const STATIC_DELIMITER = ".";
|