mirror of
https://gitee.com/energye/energy.git
synced 2024-11-30 18:57:39 +08:00
42 lines
727 B
Go
42 lines
727 B
Go
//----------------------------------------
|
|
//
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
//
|
|
// Licensed under GNU General Public License v3.0
|
|
//
|
|
//----------------------------------------
|
|
|
|
package cef
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/energye/energy/consts"
|
|
)
|
|
|
|
type JSDouble struct {
|
|
ICEFv8Value
|
|
}
|
|
|
|
func (m *JSDouble) AsDouble() (*JSDouble, error) {
|
|
return m, nil
|
|
}
|
|
|
|
func (m *JSDouble) Value() float64 {
|
|
if val, err := m.DoubleValue(); err == nil {
|
|
return val
|
|
} else {
|
|
return 0.0
|
|
}
|
|
}
|
|
|
|
func (m *JSDouble) SetValue(value float64) {
|
|
m.valueType = consts.V8_VALUE_DOUBLE
|
|
m.value = value
|
|
}
|
|
func (m *JSDouble) ToString() string {
|
|
if val, err := m.DoubleValue(); err == nil {
|
|
return fmt.Sprintf("%v", val)
|
|
}
|
|
return ""
|
|
}
|