90 matches across 6 files for TODO lang:
snippet_mode: auto · sorted by relevance
packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js JAVASCRIPT 38 matches · showing 5 view file →
192 multiple?: boolean,
193 type?: string,
194 src?: string | Blob | MediaSource | MediaStream, // TODO: Response
195 srcSet?: string,
196 loading?: 'eager' | 'lazy',
· · ·
488 const lower = scriptType.toLowerCase();
489 // Special non-MIME keywords recognized by the HTML spec
490 // TODO: May be fine to also not warn about having these types be parsed as "parser-inserted"
491 if (
492 lower === 'module' ||
· · ·
541 let hostContextProd: HostContextProd;
542 if (__DEV__) {
543 // TODO: take namespace into account when validating.
544 const hostContextDev: HostContextDev = hostContext as any;
545 validateDOMNesting(type, hostContextDev.ancestorInfo);
· · ·
678 if (!didWarnForClone) {
679 didWarnForClone = true;
680 // TODO: Once we have the ability to avoid cloning the root, suggest an absolutely
681 // positioned ViewTransition instead as the solution.
682 console.warn(
· · ·
875 ? callback =>
876 localPromise.resolve(null).then(callback).catch(handleErrorInNextTick)
877 : scheduleTimeout; // TODO: Determine the best fallback here.
878
879function handleErrorInNextTick(error: any) {
+ 33 more matches in this file
packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js JAVASCRIPT 23 matches · showing 5 view file →
704 hasHtml: false,
705
706 // @TODO add bootstrap script to implicit preloads
707
708 // persistent
· · ·
1222 // Because this is a side-effect in render, we should ideally call pushViewTransitionAttributes
1223 // after we've suspended (like forms do), so that we don't increment each attempt.
1224 // TODO: Make this deterministic.
1225 viewTransition.nameIdx++;
1226 }
· · ·
1296 styleValue === ''
1297 ) {
1298 // TODO: We used to set empty string as a style with an empty value. Does that ever make sense?
1299 continue;
1300 }
· · ·
1381
1382function makeFormFieldPrefix(resumableState: ResumableState): string {
1383 // TODO: Make this deterministic.
1384 const id = resumableState.nextFormID++;
1385 return resumableState.idPrefix + id;
· · ·
1459 // work there.
1460 if (__DEV__) {
1461 // TODO: Should this be some kind of recoverable error?
1462 console.error(
1463 'Failed to serialize an action for progressive enhancement:\n%s',
+ 18 more matches in this file
fixtures/flight-esm/src/App.js JAVASCRIPT 6 matches · showing 5 view 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
flow-typed/environments/html.js JAVASCRIPT 5 matches view 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}
flow-typed/environments/bom.js JAVASCRIPT 4 matches view file →
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;
flow-typed/environments/dom.js JAVASCRIPT 14 matches · showing 5 view file →
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 loginboth terms (AND is implicit)
auth OR logineither term
NOT path:vendorexclude matches
"exact phrase"quoted exact match
/func\s+Test/regex
handler~1fuzzy (Levenshtein 1)
file:*_test.gofilename glob
path:pkg/auth/**full path glob
lang:golanguage 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.