mirror of
https://github.com/github/codeql.git
synced 2026-01-23 03:12:58 +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;
|
|
}
|