mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-05-08 13:22:16 +00:00
15 lines
596 B
TypeScript
15 lines
596 B
TypeScript
// internal naming scheme
|
|
|
|
/** Path delimited inserted between file system levels. */
|
|
export const PATH_DELIMITER = "/";
|
|
/** Substitution used to indicate the parent directory. */
|
|
export const PARENT_SUBST = "..";
|
|
/** Function name prefix used for getters. */
|
|
export const GETTER_PREFIX = "get:";
|
|
/** Function name prefix used for setters. */
|
|
export const SETTER_PREFIX = "set:";
|
|
/** Delimiter used between class names and instance members. */
|
|
export const INSTANCE_DELIMITER = "#";
|
|
/** Delimited used between class and namespace names and static members. */
|
|
export const STATIC_DELIMITER = ".";
|