mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
9 lines
116 B
JavaScript
9 lines
116 B
JavaScript
function f() {
|
|
var o = {
|
|
prop_a: expensiveComputation(),
|
|
prop_b: anotherComputation()
|
|
};
|
|
|
|
return o.prop_b;
|
|
}
|