index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Libraries
/
LibJS
/
Runtime
/
Value.cpp
Age
Commit message (
Expand
)
Author
2020-05-28
LibJS: Implement standard semantics for relational operators (#2417)
Marcin Gasperowicz
2020-05-23
LibJS: Treat NaN in Value::to_i32() as zero
Linus Groh
2020-05-22
LibJS: Make Array.prototype.push() generic
Linus Groh
2020-05-21
LibJS: Add getter/setter support
Matthew Olsson
2020-05-18
LibJS: Remove is_nan() check in as_size_t() and fix to_size_t()
Linus Groh
2020-05-18
LibJS: Rename to_{i32,size_t}() to as_{i32,size_t}() for clarity
Linus Groh
2020-05-18
LibJS: Check for exception after converting object to string primitive
Linus Groh
2020-05-18
LibJS: Throw TypeError when coercing symbol to number
Linus Groh
2020-05-18
LibJS: Pass Interpreter& to Value::to_number() et al.
Linus Groh
2020-05-18
LibJS: Change Value::to_object(Heap& -> Interpreter&)
Linus Groh
2020-05-17
LibJS: Add symbol objects
mattco98
2020-05-15
LibJS: Add side-effect-free version of Value::to_string()
Andreas Kling
2020-05-13
LibJS: Trim whitespace from string before coercing to number
Linus Groh
2020-05-13
LibJS: Make string to number coercion work for doubles
Linus Groh
2020-05-13
LibJS: Handle empty values in operator<<()
Linus Groh
2020-05-08
LibJS: Spec-compliant equality comparisons
Matthew Olsson
2020-05-06
LibJS: Add Value::{is, as}_function()
Linus Groh
2020-05-01
LibJS: Implement most of the Reflect object
Linus Groh
2020-05-01
LibJS: Add Value::to_size_t()
Linus Groh
2020-04-29
LibJS: Throw error in Object::to_string() if string conversion fails
Linus Groh
2020-04-29
LibJS: Make Value::as_string() return a PrimitiveString reference
Andreas Kling
2020-04-29
LibJS: Don't handle arrays separately in Value::to_number()
Linus Groh
2020-04-25
LibJS: Stop using Optional<Value> in favor of Value's empty state
Andreas Kling
2020-04-23
LibJS: Fix left shift operator
Linus Groh
2020-04-23
LibJS: Implement 'in' operator
Linus Groh
2020-04-23
LibJS: Implement bitwise unsigned right shift operator (>>>)
Linus Groh
2020-04-23
LibJS: Implement bitwise right shift operator (>>)
Linus Groh
2020-04-23
LibJS: Implement bitwise left shift operator (<<)
Linus Groh
2020-04-18
LibJS: Pass prototype to BooleanObject constructor
Andreas Kling
2020-04-18
LibJS: Pass prototype to StringObject constructor
Andreas Kling
2020-04-18
LibJS: Pass prototype to NumberObject constructor
Andreas Kling
2020-04-15
LibJS: Adding two values should convert them to primitives first
Andreas Kling
2020-04-15
LibJS: Pass the Interpreter& to binary/logical/unary helpers
Andreas Kling
2020-04-12
LibJS: Add js_negative_infinity()
Linus Groh
2020-04-12
LibJS: Handle Infinity in Value::to_number()
Linus Groh
2020-04-12
LibJS: Let's show a few more decimals when stringifying numeric values
Andreas Kling
2020-04-10
LibJS: Throw real TypeError, ReferenceError, etc objects
Andreas Kling
2020-04-08
LibJS: Add Value::to_double() for convenience
Andreas Kling
2020-04-07
LibJS: Add Boolean constructor object
Jack Karamanian
2020-04-07
LibJS: Return false for NaN numbers in Value::to_boolean()
Jack Karamanian
2020-04-06
LibJS: Inline JS::Value()
Andreas Kling
2020-04-06
LibJS: Support array holes, encoded as empty JS::Value
Andreas Kling
2020-04-05
LibJS: Implement exponentiation (** operator)
Linus Groh
2020-04-05
LibJS: Add support for floating point modulous
Brian Gianforcaro
2020-04-05
LibJS: Correctness fixes for bitwise_or, address FIXME's in test.
Brian Gianforcaro
2020-04-04
LibJS: Add NumberObject and make to_object() on number values create it
Andreas Kling
2020-04-04
LibJS: Add basic support for modulo (%) in binary expressions
Andreas Kling
2020-04-02
LibJS: Implement Infinity
Linus Groh
2020-04-02
LibJS: Implement unary plus / minus
Linus Groh
2020-04-01
LibJS: Make Value::as_object() return Object&
Andreas Kling
[next]