-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Speed improvement3 #777
Speed improvement3 #777
Conversation
WalkthroughThe recent updates focus on enhancing performance and error handling across several files. In Changes
Entelligence.ai can learn from your feedback. Simply add 👍 / 👎 emojis to teach it your preferences. More shortcuts belowEmoji Descriptions:
Interact with the Bot:
|
// Simple timing helper that only runs in debug mode | ||
function measureTime(fn) { | ||
if (!debugMode) return fn; | ||
return function(...args) { | ||
const start = performance.now(); | ||
const result = fn.apply(this, args); | ||
const duration = performance.now() - start; | ||
if (metricName !== 'buildDomTree') { // Skip buildDomTree as we measure it separately | ||
PERF_METRICS.timings[metricName] += duration; | ||
} | ||
return result; | ||
}; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The measureTime()
function wraps functions but never records the measured duration, making performance tracking ineffective in debug mode
📝 Committable Code Suggestion
‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.
// Simple timing helper that only runs in debug mode | |
function measureTime(fn) { | |
if (!debugMode) return fn; | |
return function(...args) { | |
const start = performance.now(); | |
const result = fn.apply(this, args); | |
const duration = performance.now() - start; | |
if (metricName !== 'buildDomTree') { // Skip buildDomTree as we measure it separately | |
PERF_METRICS.timings[metricName] += duration; | |
} | |
return result; | |
}; | |
} | |
// Simple timing helper that only runs in debug mode | |
function measureTime(fn) { | |
if (!debugMode) return fn; | |
return function(...args) { | |
const start = performance.now(); | |
const result = fn.apply(this, args); | |
const duration = performance.now() - start; | |
console.debug(`Function execution time: ${duration}ms`); | |
return result; | |
}; | |
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This gets logged outside the js file
function pushTiming(type) { | ||
TIMING_STACK[type] = TIMING_STACK[type] || []; | ||
TIMING_STACK[type].push(performance.now()); | ||
} | ||
|
||
function popTiming(type) { | ||
const start = TIMING_STACK[type].pop(); | ||
const duration = performance.now() - start; | ||
return duration; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pushTiming()
is defined but never used, while popTiming('highlighting')
is called in highlightElement()
, potentially causing runtime errors
📝 Committable Code Suggestion
‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.
function pushTiming(type) { | |
TIMING_STACK[type] = TIMING_STACK[type] || []; | |
TIMING_STACK[type].push(performance.now()); | |
} | |
function popTiming(type) { | |
const start = TIMING_STACK[type].pop(); | |
const duration = performance.now() - start; | |
return duration; | |
} | |
function pushTiming(type) { | |
TIMING_STACK[type] = TIMING_STACK[type] || []; | |
TIMING_STACK[type].push(performance.now()); | |
} | |
function popTiming(type) { | |
if (!TIMING_STACK[type] || !TIMING_STACK[type].length) return 0; | |
const start = TIMING_STACK[type].pop(); | |
const duration = performance.now() - start; | |
return duration; | |
} |
No description provided.