Skip to content

Commit 1ca7723

Browse files
authored
feat: support Object.values() (#518)
Adds support for `Object.values()`
1 parent 98effe0 commit 1ca7723

File tree

4 files changed

+85
-0
lines changed

4 files changed

+85
-0
lines changed

builtin_object.go

+11
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,17 @@ func builtinObjectKeys(call FunctionCall) Value {
273273
panic(call.runtime.panicTypeError("Object.Keys is nil"))
274274
}
275275

276+
func builtinObjectValues(call FunctionCall) Value {
277+
if obj, values := call.Argument(0).object(), []Value(nil); nil != obj {
278+
obj.enumerate(false, func(name string) bool {
279+
values = append(values, obj.get(name))
280+
return true
281+
})
282+
return objectValue(call.runtime.newArrayOf(values))
283+
}
284+
panic(call.runtime.panicTypeError("Object.Values is nil"))
285+
}
286+
276287
func builtinObjectGetOwnPropertyNames(call FunctionCall) Value {
277288
if obj, propertyNames := call.Argument(0).object(), []Value(nil); nil != obj {
278289
obj.enumerate(true, func(name string) bool {

inline.go

+38
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

object_test.go

+34
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,40 @@ func TestObject_keys(t *testing.T) {
360360
})
361361
}
362362

363+
func TestObject_values(t *testing.T) {
364+
tt(t, func() {
365+
test, _ := test()
366+
367+
test(`Object.values({ abc:"first_example", def:"second_example" })`, "first_example,second_example")
368+
369+
test(`
370+
function abc() {
371+
this.abc = "first_example";
372+
this.def = "second_example";
373+
}
374+
Object.values(new abc())
375+
`, "first_example,second_example")
376+
377+
test(`
378+
function def() {
379+
this.ghi = "third_example"
380+
}
381+
def.prototype = new abc();
382+
Object.values(new def());
383+
`, "third_example")
384+
385+
test(`
386+
var arr = [1, 2, 3];
387+
Object.values(arr);
388+
`, "1,2,3")
389+
390+
test(`
391+
var arr = [{"abc": "first_example"}, {"def": "second_example"}];
392+
Object.values(arr);
393+
`, "[object Object],[object Object]")
394+
})
395+
}
396+
363397
func TestObject_getOwnPropertyNames(t *testing.T) {
364398
tt(t, func() {
365399
test, _ := test()

tools/gen-jscore/.gen-jscore.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ types:
3232
function: 1
3333
- name: keys
3434
function: 1
35+
- name: values
36+
function: 1
3537
- name: getOwnPropertyNames
3638
function: 1
3739
prototype:

0 commit comments

Comments
 (0)