2022-10-04 13:21:05 +08:00
|
|
|
//----------------------------------------
|
|
|
|
//
|
|
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
|
|
//
|
2022-10-04 16:38:43 +08:00
|
|
|
// Licensed under GNU General Public License v3.0
|
2022-10-04 13:21:05 +08:00
|
|
|
//
|
|
|
|
//----------------------------------------
|
|
|
|
|
|
|
|
package cef
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2022-10-04 22:34:57 +08:00
|
|
|
"github.com/energye/energy/consts"
|
2022-10-04 13:21:05 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type JSInteger struct {
|
|
|
|
ICEFv8Value
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *JSInteger) AsInteger() (*JSInteger, error) {
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *JSInteger) Float() float64 {
|
|
|
|
if val, err := m.IntegerValue(); err == nil {
|
|
|
|
return float64(val)
|
|
|
|
} else {
|
|
|
|
return 0.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *JSInteger) Value() int32 {
|
|
|
|
if val, err := m.IntegerValue(); err == nil {
|
|
|
|
return val
|
|
|
|
} else {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (m *JSInteger) SetValue(value int32) {
|
2022-10-04 22:34:57 +08:00
|
|
|
m.valueType = consts.V8_VALUE_INT
|
2022-10-04 13:21:05 +08:00
|
|
|
m.value = value
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *JSInteger) ToString() string {
|
|
|
|
if val, err := m.IntegerValue(); err == nil {
|
|
|
|
return fmt.Sprintf("%v", val)
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|