mirror of
https://github.com/davidmarkclements/0x.git
synced 2025-12-08 19:06:01 +00:00
40 lines
1.4 KiB
JavaScript
40 lines
1.4 KiB
JavaScript
'use strict'
|
|
|
|
module.exports = (render) => Object.assign(() => render`
|
|
<chart
|
|
class='db overflow-y-scroll overflow-x-hidden relative'
|
|
style='padding-left: 5%; padding-right: 5%; height: calc(100% - 66px)'
|
|
>
|
|
</chart>
|
|
`, { v8cats })
|
|
|
|
function v8cats (child) {
|
|
var name = child.name
|
|
|
|
if (/\[INLINABLE\]/.test(name)) return {type: 'inlinable'}
|
|
|
|
if (!/\.js/.test(name)) {
|
|
switch (true) {
|
|
case /\[CODE:RegExp\]/.test(name): return {type: 'regexp'}
|
|
case /\[CODE:.*\]/.test(name): return {type: 'v8'}
|
|
case /\.$/.test(name): return {type: 'core'}
|
|
case /\[CPP\]/.test(name): return {type: 'cpp'}
|
|
case /\[SHARED_LIB\]/.test(name): return {type: 'cpp'}
|
|
case /\[eval\]/.test(name): return {type: 'native'} // unless we create an eval checkbox
|
|
// "native" is the next best label since
|
|
// you cannot tell where the eval comes
|
|
// from (app, deps, core)
|
|
default: return {type: 'v8'}
|
|
}
|
|
}
|
|
|
|
if (/\[INIT\]/.test(name)) return {type: 'init'}
|
|
|
|
switch (true) {
|
|
case / native /.test(name): return {type: 'native'}
|
|
case (name.indexOf('/') === -1 || (/internal\//.test(name) && !/ \//.test(name))): return {type: 'core'}
|
|
case /node_modules/.test(name): return {type: 'deps'}
|
|
default: return {type: 'app'}
|
|
}
|
|
}
|