Skip to content

README: Add reference to OpenUI5 Sample App#1

Merged
RandomByte merged 1 commit into
masterfrom
add-sample-app-reference
Mar 29, 2018
Merged

README: Add reference to OpenUI5 Sample App#1
RandomByte merged 1 commit into
masterfrom
add-sample-app-reference

Conversation

@RandomByte

Copy link
Copy Markdown
Member

No description provided.

@RandomByte
RandomByte requested a review from matz3 March 29, 2018 13:12
@CLAassistant

CLAassistant commented Mar 29, 2018

Copy link
Copy Markdown

CLA assistant check
All committers have signed the CLA.

@RandomByte
RandomByte force-pushed the add-sample-app-reference branch from 8262fbe to ddf3d10 Compare March 29, 2018 13:14
@RandomByte
RandomByte merged commit 4bb4655 into master Mar 29, 2018
@RandomByte
RandomByte deleted the add-sample-app-reference branch March 29, 2018 13:17
RandomByte added a commit that referenced this pull request Jul 5, 2026
Both `ProjectBuilder.#build` and `ProjectBuilder.#validate` iterated
their project-context queue with `while (queue.length) { queue.shift() }`,
which is O(n^2) in the queue length for no reason — the queue is
constructed once from the pre-computed traversal and is not mutated
during iteration.

Switch both loops to `for (const projectBuildContext of queue)`. No
behaviour change; the shape now matches the actual access pattern.

Follow-up from BANNER_TODO item #1.
RandomByte added a commit that referenced this pull request Jul 6, 2026
Both `ProjectBuilder.#build` and `ProjectBuilder.#validate` iterated
their project-context queue with `while (queue.length) { queue.shift() }`,
which is O(n^2) in the queue length for no reason — the queue is
constructed once from the pre-computed traversal and is not mutated
during iteration.

Switch both loops to `for (const projectBuildContext of queue)`. No
behaviour change; the shape now matches the actual access pattern.

Follow-up from BANNER_TODO item #1.
RandomByte added a commit that referenced this pull request Jul 6, 2026
Both `ProjectBuilder.#build` and `ProjectBuilder.#validate` iterated
their project-context queue with `while (queue.length) { queue.shift() }`,
which is O(n^2) in the queue length for no reason — the queue is
constructed once from the pre-computed traversal and is not mutated
during iteration.

Switch both loops to `for (const projectBuildContext of queue)`. No
behaviour change; the shape now matches the actual access pattern.

Follow-up from BANNER_TODO item #1.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants