Home
last modified time | relevance | path

Searched refs:keyFor (Results 1 – 16 of 16) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DsymbolProperty59.symbols5 [Symbol.keyFor]: string;
6 >[Symbol.keyFor] : Symbol(I[Symbol.keyFor], Decl(symbolProperty59.ts, 0, 13))
7 >Symbol.keyFor : Symbol(SymbolConstructor.keyFor, Decl(lib.es2015.symbol.d.ts, --, --))
9 >keyFor : Symbol(SymbolConstructor.keyFor, Decl(lib.es2015.symbol.d.ts, --, --))
DsymbolProperty59.types3 [Symbol.keyFor]: string;
4 >[Symbol.keyFor] : string
5 >Symbol.keyFor : (sym: symbol) => string
7 >keyFor : (sym: symbol) => string
DsymbolProperty59.js3 [Symbol.keyFor]: string;
DdoYouNeedToChangeYourTargetLibraryES2015.js64 const testSymbolKeyFor = Symbol.keyFor(testSymbolFor);
162 var testSymbolKeyFor = Symbol.keyFor(testSymbolFor);
DsymbolProperty59.errors.txt7 [Symbol.keyFor]: string;
DdoYouNeedToChangeYourTargetLibraryES2015.types482 const testSymbolKeyFor = Symbol.keyFor(testSymbolFor);
484 >Symbol.keyFor(testSymbolFor) : any
485 >Symbol.keyFor : any
487 >keyFor : any
DdoYouNeedToChangeYourTargetLibraryES2015.symbols221 const testSymbolKeyFor = Symbol.keyFor(testSymbolFor);
DdoYouNeedToChangeYourTargetLibraryES2015.errors.txt260 const testSymbolKeyFor = Symbol.keyFor(testSymbolFor);
/third_party/jerryscript/tests/jerry/es2015/
Dsymbol-key-keyfor.js29 assert (Symbol.keyFor (a) === 'foo');
30 assert (Symbol.keyFor (b) === 'foo');
37 assert (Symbol.keyFor (c) === '5');
38 assert (Symbol.keyFor (d) === '5.58');
39 assert (Symbol.keyFor (e) === '[object Object]');
52 Symbol.keyFor ('NonSymbolValue');
59 assert (Symbol.keyFor (array[i]) === ('foo' + i));
/third_party/typescript/tests/arkTSTest/testcase/arkts-no-symbol/
Darkts-no-symbol-8-error.ets18 let s2 = Symbol.keyFor(s1);
22 let s4 = Symbol.keyFor(s3);
/third_party/typescript/tests/cases/conformance/es6/Symbols/
DsymbolProperty59.ts3 [Symbol.keyFor]: string;
/third_party/typescript/src/lib/
Des2015.symbol.d.ts25 keyFor(sym: symbol): string | undefined; method
/third_party/typescript/lib/
Dlib.es2015.symbol.d.ts45 keyFor(sym: symbol): string | undefined; method
/third_party/typescript/tests/cases/compiler/
DdoYouNeedToChangeYourTargetLibraryES2015.ts63 const testSymbolKeyFor = Symbol.keyFor(testSymbolFor);
/third_party/jerryscript/jerry-core/lit/
Dlit-magic-strings.ini156 LIT_MAGIC_STRING_KEY_FOR = "keyFor"
/third_party/node/typings/
Dprimordials.d.ts435 export const SymbolKeyFor: typeof Symbol.keyFor