ladybird/Libraries/LibJS/ParserError.h

27 lines
595 B
C
Raw Normal View History

/*
* Copyright (c) 2020, Stephan Unverwerth <s.unverwerth@serenityos.org>
* Copyright (c) 2021-2022, David Tuin <davidot@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Error.h>
#include <AK/Optional.h>
#include <AK/Utf16String.h>
#include <LibJS/Export.h>
#include <LibJS/SourceRange.h>
namespace JS {
struct JS_API ParserError {
Utf16String message;
Optional<Position> position;
Utf16String to_utf16_string() const;
Utf16String source_location_hint(Utf16View const& source, char spacer = ' ', char indicator = '^') const;
};
}