/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/bench/testdata/code_lens.ts
56 строк
496 B
David Sherret
ci: add build, test, wpt, and bench jobs (#32158)
14 фев 2026, 14:31
Не верифицирован
14 фев 2026, 14:31
c15529e
Код
Авторство
О чём код?
interface A { a: string; } interface B { b: string; } interface C { c: string; } interface D { d: string; } interface E { e: string; } interface F { f: string; } interface G { g: string; } interface H { h: string; } class AB implements A, B { a = "a"; b = "b"; } class CD implements C, D { c = "c"; d = "d"; } class EF implements E, F { e = "e"; f = "f"; } class GH implements G, H { g = "g"; h = "h"; } new AB().a; new CD().c; new EF().e; new GH().g;