mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:28:11 +00:00
LibJS: Replace the global print() function with console.log() :^)
This commit is contained in:
parent
19452230cd
commit
086f68e878
10 changed files with 109 additions and 25 deletions
|
@ -1,2 +1,2 @@
|
||||||
var foo = "foobar";
|
var foo = "foobar";
|
||||||
print(foo.charAt(3));
|
console.log(foo.charAt(3));
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
var x = "foobar";
|
var x = "foobar";
|
||||||
print(x.hasOwnProperty("length"));
|
console.log(x.hasOwnProperty("length"));
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
print("Hello friends!")
|
console.log("Hello friends!")
|
||||||
|
|
|
@ -8,4 +8,4 @@ function foo() {
|
||||||
return y;
|
return y;
|
||||||
}
|
}
|
||||||
|
|
||||||
print(foo());
|
console.log(foo());
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
var d = "Double quoted string\n";
|
var d = "Double quoted string\n";
|
||||||
print(d);
|
console.log(d);
|
||||||
var s = 'Single quoted string\n';
|
var s = 'Single quoted string\n';
|
||||||
print(s)
|
console.log(s)
|
||||||
var e = "Escaped characters \b \f \n \r \t \v \' \" \\ \n";
|
var e = "Escaped characters \b \f \n \r \t \v \' \" \\ \n";
|
||||||
print(e)
|
console.log(e)
|
||||||
var u = "Unterminated string
|
var u = "Unterminated string
|
||||||
this is not possible in js\n";
|
this is not possible in js\n";
|
||||||
print(u);
|
console.log(u);
|
||||||
|
|
||||||
var u2 = 'This is neither\n
|
var u2 = 'This is neither\n
|
||||||
print(u2);
|
console.log(u2);
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
const object = {};
|
const object = {};
|
||||||
|
|
||||||
print(true == 1);
|
console.log(true == 1);
|
||||||
print(null == undefined);
|
console.log(null == undefined);
|
||||||
print("12" == 12);
|
console.log("12" == 12);
|
||||||
print(1 + "12");
|
console.log(1 + "12");
|
||||||
print(12 / "12" == true);
|
console.log(12 / "12" == true);
|
||||||
print(2 * "12");
|
console.log(2 * "12");
|
||||||
print(~"24");
|
console.log(~"24");
|
||||||
print(~true);
|
console.log(~true);
|
||||||
print(2*2 + "4");
|
console.log(2*2 + "4");
|
||||||
print(object == "[object Object]");
|
console.log(object == "[object Object]");
|
||||||
|
|
|
@ -6,6 +6,7 @@ OBJS = \
|
||||||
Lexer.o \
|
Lexer.o \
|
||||||
Parser.o \
|
Parser.o \
|
||||||
Runtime/Cell.o \
|
Runtime/Cell.o \
|
||||||
|
Runtime/ConsoleObject.o \
|
||||||
Runtime/Function.o \
|
Runtime/Function.o \
|
||||||
Runtime/GlobalObject.o \
|
Runtime/GlobalObject.o \
|
||||||
Runtime/NativeFunction.o \
|
Runtime/NativeFunction.o \
|
||||||
|
|
46
Libraries/LibJS/Runtime/ConsoleObject.cpp
Normal file
46
Libraries/LibJS/Runtime/ConsoleObject.cpp
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
||||||
|
* list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <AK/Function.h>
|
||||||
|
#include <LibJS/Runtime/ConsoleObject.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
namespace JS {
|
||||||
|
|
||||||
|
ConsoleObject::ConsoleObject()
|
||||||
|
{
|
||||||
|
put_native_function("log", [](Object*, Vector<Value> arguments) -> Value {
|
||||||
|
for (auto& argument : arguments)
|
||||||
|
printf("%s ", argument.to_string().characters());
|
||||||
|
return js_undefined();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
ConsoleObject::~ConsoleObject()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
42
Libraries/LibJS/Runtime/ConsoleObject.h
Normal file
42
Libraries/LibJS/Runtime/ConsoleObject.h
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
||||||
|
* list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <LibJS/Runtime/Object.h>
|
||||||
|
|
||||||
|
namespace JS {
|
||||||
|
|
||||||
|
class ConsoleObject final : public Object {
|
||||||
|
public:
|
||||||
|
ConsoleObject();
|
||||||
|
virtual ~ConsoleObject() override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
virtual const char* class_name() const override { return "ConsoleObject"; }
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -6,17 +6,12 @@
|
||||||
#include <LibJS/Runtime/GlobalObject.h>
|
#include <LibJS/Runtime/GlobalObject.h>
|
||||||
#include <LibJS/Runtime/NativeFunction.h>
|
#include <LibJS/Runtime/NativeFunction.h>
|
||||||
#include <LibJS/Runtime/Value.h>
|
#include <LibJS/Runtime/Value.h>
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
namespace JS {
|
namespace JS {
|
||||||
|
|
||||||
GlobalObject::GlobalObject()
|
GlobalObject::GlobalObject()
|
||||||
{
|
{
|
||||||
put_native_function("print", [](Object*, Vector<Value> arguments) -> Value {
|
put("console", heap().allocate<ConsoleObject>());
|
||||||
for (auto& argument : arguments)
|
|
||||||
printf("%s ", argument.to_string().characters());
|
|
||||||
return js_undefined();
|
|
||||||
});
|
|
||||||
put_native_function("gc", [](Object* this_object, Vector<Value>) -> Value {
|
put_native_function("gc", [](Object* this_object, Vector<Value>) -> Value {
|
||||||
dbg() << "Forced garbage collection requested!";
|
dbg() << "Forced garbage collection requested!";
|
||||||
this_object->heap().collect_garbage();
|
this_object->heap().collect_garbage();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue