88 matches across 6 files for TODO lang:
snippet_mode: auto · sorted by relevance
188 multiple?: boolean,
189 type?: string,
190▶ src?: string | Blob | MediaSource | MediaStream, // TODO: Response
191 srcSet?: string,
192 loading?: 'eager' | 'lazy',
· · ·
481 const lower = scriptType.toLowerCase();
482 // Special non-MIME keywords recognized by the HTML spec
483▶ // TODO: May be fine to also not warn about having these types be parsed as "parser-inserted"
484 if (
485 lower === 'module' ||
· · ·
534 let hostContextProd: HostContextProd;
535 if (__DEV__) {
536▶ // TODO: take namespace into account when validating.
537 const hostContextDev: HostContextDev = hostContext as any;
538 validateDOMNesting(type, hostContextDev.ancestorInfo);
· · ·
671 if (!didWarnForClone) {
672 didWarnForClone = true;
673▶ // TODO: Once we have the ability to avoid cloning the root, suggest an absolutely
674 // positioned ViewTransition instead as the solution.
675 console.warn(
· · ·
868 ? callback =>
869 localPromise.resolve(null).then(callback).catch(handleErrorInNextTick)
870▶ : scheduleTimeout; // TODO: Determine the best fallback here.
871
872function handleErrorInNextTick(error: any) {
+ 31 more matches in this file
703 hasHtml: false,
704
705▶ // @TODO add bootstrap script to implicit preloads
706
707 // persistent
· · ·
1166 // Because this is a side-effect in render, we should ideally call pushViewTransitionAttributes
1167 // after we've suspended (like forms do), so that we don't increment each attempt.
1168▶ // TODO: Make this deterministic.
1169 viewTransition.nameIdx++;
1170 }
· · ·
1228 styleValue === ''
1229 ) {
1230▶ // TODO: We used to set empty string as a style with an empty value. Does that ever make sense?
1231 continue;
1232 }
· · ·
1313
1314function makeFormFieldPrefix(resumableState: ResumableState): string {
1315▶ // TODO: Make this deterministic.
1316 const id = resumableState.nextFormID++;
1317 return resumableState.idPrefix + id;
· · ·
1391 // work there.
1392 if (__DEV__) {
1393▶ // TODO: Should this be some kind of recoverable error?
1394 console.error(
1395 'Failed to serialize an action for progressive enhancement:\n%s',
+ 18 more matches in this file
11
12export default async function App() {
13▶ const res = await fetch('http://localhost:3001/todos');
14 const todos = await res.json();
15 return h(
· · ·
14▶ const todos = await res.json();
15 return h(
16 'html',
· · ·
17 {
18▶ lang: 'en',
19 },
20 h(
· · ·
45 'ul',
46 null,
47▶ todos.map(todo =>
48 h(
49 'li',
· · ·
50 {
51▶ key: todo.id,
52 },
53 todo.text
+ 1 more matches in this file
145}
146
147▶// TODO: HTMLDocument
148type FocusOptions = {preventScroll?: boolean, ...};
149
· · ·
176 itemType: any;
177 itemValue: Object;
178▶ lang: string;
179 offsetHeight: number;
180 offsetLeft: number;
· · ·
1249 hostname: string;
1250 href: string;
1251▶ hreflang: string;
1252 media: string;
1253 name: string;
· · ·
1279 crossOrigin: ?('anonymous' | 'use-credentials');
1280 href: string;
1281▶ hreflang: string;
1282 media: string;
1283 rel: string;
· · ·
1496 readyState: 0 | 1 | 2 | 3;
1497 src: string;
1498▶ srclang: string;
1499 track: TextTrack;
1500}
1616 | {[key: string]: string, ...};
1617
1618▶// TODO Heades and URLSearchParams are almost the same thing.
1619// Could it somehow be abstracted away?
1620declare class Headers {
· · ·
2234
2235 text: string;
2236▶ lang: string;
2237 voice: SpeechSynthesisVoice | null;
2238 volume: number;
· · ·
2284 +voiceURI: string;
2285 +name: string;
2286▶ +lang: string;
2287 +localService: boolean;
2288 +default: boolean;
· · ·
2366
2367 +grammars: SpeechGrammar[];
2368▶ +lang: string;
2369 +continuous: boolean;
2370 +interimResults: boolean;
584 * Returns the object to which event is dispatched (its target).
585 */
586▶ +target: EventTarget; // TODO: nullable
587 /** @deprecated */
588 +srcElement: Element; // TODO: nullable
· · ·
588▶ +srcElement: Element; // TODO: nullable
589 /**
590 * Returns the object whose event listener's callback is currently being invoked.
· · ·
591 */
592▶ +currentTarget: EventTarget; // TODO: nullable
593 /**
594 * Returns the invocation target objects of event's path (objects on which
· · ·
1013 dataTransfer?: DataTransfer,
1014 isComposing?: boolean,
1015▶ ranges?: Array<any>, // TODO: StaticRange
1016 ...
1017};
· · ·
1023 +inputType: string;
1024 +isComposing: boolean;
1025▶ getTargetRanges(): Array<any>; // TODO: StaticRange
1026}
1027
+ 9 more matches in this file
Search syntax
auth login | both terms (AND is implicit) |
auth OR login | either term |
NOT path:vendor | exclude matches |
"exact phrase" | quoted exact match |
/func\s+Test/ | regex |
handler~1 | fuzzy (Levenshtein 1) |
file:*_test.go | filename glob |
path:pkg/auth/** | full path glob |
lang:go | language filter |
Search any public repo from your terminal
This page calls POST /api/v1/code_search. Same tool, available over MCP for Claude/Cursor/Copilot.