mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-05-02 02:12:15 +00:00
9 lines
294 B
TypeScript
9 lines
294 B
TypeScript
|
// internal naming scheme
|
||
|
|
||
|
export const PATH_DELIMITER: string = "/";
|
||
|
export const PARENT_SUBST: string = "..";
|
||
|
export const GETTER_PREFIX: string = "get:";
|
||
|
export const SETTER_PREFIX: string = "set:";
|
||
|
export const INSTANCE_DELIMITER: string = "#";
|
||
|
export const STATIC_DELIMITER: string = ".";
|