energy/cef/cef-v8-js-array.go

18 lines
369 B
Go
Raw Normal View History

2022-10-04 13:21:05 +08:00
//----------------------------------------
//
// Copyright © yanghy. All Rights Reserved.
//
// Licensed under Apache License Version 2.0, January 2004
//
// https://www.apache.org/licenses/LICENSE-2.0
2022-10-04 13:21:05 +08:00
//
//----------------------------------------
2023-02-20 14:42:17 +08:00
// V8 JSValue JSArray 类型实现
2022-10-04 13:21:05 +08:00
package cef
2023-02-20 14:42:17 +08:00
// JSArray 类型 先保留 未添加
2022-10-04 13:21:05 +08:00
type JSArray struct {
2023-02-21 23:16:35 +08:00
V8Value
2022-10-04 13:21:05 +08:00
}