mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
116 lines
2.7 KiB
Rust
116 lines
2.7 KiB
Rust
use oxc_semantic::SymbolFlags;
|
|
|
|
use crate::util::SemanticTester;
|
|
|
|
#[test]
|
|
fn test_class_simple() {
|
|
SemanticTester::js("export class Foo {};")
|
|
.has_root_symbol("Foo")
|
|
.contains_flags(SymbolFlags::Class | SymbolFlags::Export)
|
|
.has_number_of_references(0)
|
|
.is_exported()
|
|
.test();
|
|
|
|
SemanticTester::js("class Foo {}; let f = new Foo()")
|
|
.has_root_symbol("Foo")
|
|
.has_number_of_reads(1)
|
|
.test();
|
|
}
|
|
|
|
#[test]
|
|
fn test_function_simple() {
|
|
SemanticTester::js("function foo() { return }")
|
|
.has_root_symbol("foo")
|
|
.contains_flags(SymbolFlags::Function)
|
|
.test();
|
|
}
|
|
|
|
#[test]
|
|
fn test_function_expressions() {
|
|
SemanticTester::js("const x = function y() {}")
|
|
.has_some_symbol("y")
|
|
.contains_flags(SymbolFlags::Function)
|
|
.test();
|
|
SemanticTester::js("const x = () => {}")
|
|
.has_some_symbol("x")
|
|
.contains_flags(SymbolFlags::BlockScopedVariable | SymbolFlags::ConstVariable)
|
|
.test();
|
|
}
|
|
|
|
#[test]
|
|
fn test_var_simple() {
|
|
SemanticTester::js("let x; { let y; }")
|
|
.has_some_symbol("x")
|
|
.intersects_flags(SymbolFlags::Variable)
|
|
.contains_flags(SymbolFlags::BlockScopedVariable)
|
|
.test();
|
|
}
|
|
|
|
#[test]
|
|
fn test_var_read_write() {
|
|
SemanticTester::js("let x; x += 1")
|
|
.has_root_symbol("x")
|
|
.has_number_of_references(1)
|
|
.has_number_of_reads(1)
|
|
.has_number_of_writes(1)
|
|
.test();
|
|
|
|
SemanticTester::js("let a; let b = 1 + (0, ((a)));")
|
|
.has_some_symbol("a")
|
|
.has_number_of_reads(1)
|
|
.has_number_of_writes(0)
|
|
.test();
|
|
|
|
SemanticTester::js(
|
|
"
|
|
let x;
|
|
function foo(a) {
|
|
console.log(x(a))
|
|
}",
|
|
)
|
|
.has_some_symbol("x")
|
|
.has_number_of_reads(1)
|
|
.has_number_of_writes(0)
|
|
.test();
|
|
}
|
|
|
|
#[test]
|
|
fn test_types_simple() {
|
|
let test = SemanticTester::ts(
|
|
"
|
|
interface A {
|
|
x: number;
|
|
y: string;
|
|
}
|
|
type T = { x: number; y: string; }
|
|
|
|
const t: T = { x: 1, y: 'foo' };
|
|
",
|
|
);
|
|
test.has_root_symbol("A")
|
|
.contains_flags(SymbolFlags::Interface)
|
|
.has_number_of_references(0)
|
|
.test();
|
|
|
|
test.has_root_symbol("T")
|
|
.contains_flags(SymbolFlags::TypeAlias)
|
|
.has_number_of_references(1)
|
|
.test();
|
|
}
|
|
|
|
#[test]
|
|
fn test_export_flag() {
|
|
let tester = SemanticTester::js(
|
|
"
|
|
const a = 1;
|
|
export { a, b as d };
|
|
class b {}
|
|
export default c;
|
|
function c() {}
|
|
",
|
|
);
|
|
|
|
tester.has_root_symbol("a").contains_flags(SymbolFlags::Export).test();
|
|
tester.has_root_symbol("b").contains_flags(SymbolFlags::Export).test();
|
|
tester.has_root_symbol("c").contains_flags(SymbolFlags::Export).test();
|
|
}
|