Lines Matching refs:original
12 The following sections will describe the prefix and original function name in detail.
36 …he hexadecimal number is the index of the scope name in this array. The original function name is …
39 …me of longFuncName is "#*#longFuncName", in which "longFuncName" is the original function name and…
40 …Array. In this case, the string is "longFuncName", which means that the original name of this func…
61 function foo() {} // The original function name is "foo".
62 () => { } // The original function name is "".
63 () => { } // The original function name is "^1".
67 1. If an anonymous function is stored in a variable when the function is defined, the original func…
69 let a = () => {} // The original function name is "a".
72 * If the attribute name does not contain a **slash (\)** or a **period (.)**, the original function…
75 b : () => {} // The original function name is "b".
78 * If the attribute name contains a **slash (\)** or a **period (.)**, the original function is name…
81 "a.b#c^2": () => {} // The original function name is "".
82 "x\\y#": () => {} // The original function name is "^1".