mirror of
https://github.com/oven-sh/bun
synced 2026-02-15 13:22:07 +00:00
Fixes ENG-21287
Build times, from `bun run build && echo '//' >> src/main.zig && time
bun run build`
|Platform|0.14.1|0.15.2|Speedup|
|-|-|-|-|
|macos debug asan|126.90s|106.27s|1.19x|
|macos debug noasan|60.62s|50.85s|1.19x|
|linux debug asan|292.77s|241.45s|1.21x|
|linux debug noasan|146.58s|130.94s|1.12x|
|linux debug use_llvm=false|n/a|78.27s|1.87x|
|windows debug asan|177.13s|142.55s|1.24x|
Runtime performance:
- next build memory usage may have gone up by 5%. Otherwise seems the
same. Some code with writers may have gotten slower, especially one
instance of a counting writer and a few instances of unbuffered writers
that now have vtable overhead.
- File size reduced by 800kb (from 100.2mb to 99.4mb)
Improvements:
- `@export` hack is no longer needed for watch
- native x86_64 backend for linux builds faster. to use it, set use_llvm
false and no_link_obj false. also set `ASAN_OPTIONS=detect_leaks=0`
otherwise it will spam the output with tens of thousands of lines of
debug info errors. may need to use the zig lldb fork for debugging.
- zig test-obj, which we will be able to use for zig unit tests
Still an issue:
- false 'dependency loop' errors remain in watch mode
- watch mode crashes observed
Follow-up:
- [ ] search `comptime Writer: type` and `comptime W: type` and remove
- [ ] remove format_mode in our zig fork
- [ ] remove deprecated.zig autoFormatLabelFallback
- [ ] remove deprecated.zig autoFormatLabel
- [ ] remove deprecated.BufferedWriter and BufferedReader
- [ ] remove override_no_export_cpp_apis as it is no longer needed
- [ ] css Parser(W) -> Parser, and remove all the comptime writer: type
params
- [ ] remove deprecated writer fully
Files that add lines:
```
649 src/deprecated.zig
167 scripts/pack-codegen-for-zig-team.ts
54 scripts/cleartrace-impl.js
46 scripts/cleartrace.ts
43 src/windows.zig
18 src/fs.zig
17 src/bun.js/ConsoleObject.zig
16 src/output.zig
12 src/bun.js/test/debug.zig
12 src/bun.js/node/node_fs.zig
8 src/env_loader.zig
7 src/css/printer.zig
7 src/cli/init_command.zig
7 src/bun.js/node.zig
6 src/string/escapeRegExp.zig
6 src/install/PnpmMatcher.zig
5 src/bun.js/webcore/Blob.zig
4 src/crash_handler.zig
4 src/bun.zig
3 src/install/lockfile/bun.lock.zig
3 src/cli/update_interactive_command.zig
3 src/cli/pack_command.zig
3 build.zig
2 src/Progress.zig
2 src/install/lockfile/lockfile_json_stringify_for_debugging.zig
2 src/css/small_list.zig
2 src/bun.js/webcore/prompt.zig
1 test/internal/ban-words.test.ts
1 test/internal/ban-limits.json
1 src/watcher/WatcherTrace.zig
1 src/transpiler.zig
1 src/shell/builtin/cp.zig
1 src/js_printer.zig
1 src/io/PipeReader.zig
1 src/install/bin.zig
1 src/css/selectors/selector.zig
1 src/cli/run_command.zig
1 src/bun.js/RuntimeTranspilerStore.zig
1 src/bun.js/bindings/JSRef.zig
1 src/bake/DevServer.zig
```
Files that remove lines:
```
-1 src/test/recover.zig
-1 src/sql/postgres/SocketMonitor.zig
-1 src/sql/mysql/MySQLRequestQueue.zig
-1 src/sourcemap/CodeCoverage.zig
-1 src/css/values/color_js.zig
-1 src/compile_target.zig
-1 src/bundler/linker_context/convertStmtsForChunk.zig
-1 src/bundler/bundle_v2.zig
-1 src/bun.js/webcore/blob/read_file.zig
-1 src/ast/base.zig
-2 src/sql/postgres/protocol/ArrayList.zig
-2 src/shell/builtin/mkdir.zig
-2 src/install/PackageManager/patchPackage.zig
-2 src/install/PackageManager/PackageManagerDirectories.zig
-2 src/fmt.zig
-2 src/css/declaration.zig
-2 src/css/css_parser.zig
-2 src/collections/baby_list.zig
-2 src/bun.js/bindings/ZigStackFrame.zig
-2 src/ast/E.zig
-3 src/StandaloneModuleGraph.zig
-3 src/deps/picohttp.zig
-3 src/deps/libuv.zig
-3 src/btjs.zig
-4 src/threading/Futex.zig
-4 src/shell/builtin/touch.zig
-4 src/meta.zig
-4 src/install/lockfile.zig
-4 src/css/selectors/parser.zig
-5 src/shell/interpreter.zig
-5 src/css/error.zig
-5 src/bun.js/web_worker.zig
-5 src/bun.js.zig
-6 src/cli/test_command.zig
-6 src/bun.js/VirtualMachine.zig
-6 src/bun.js/uuid.zig
-6 src/bun.js/bindings/JSValue.zig
-9 src/bun.js/test/pretty_format.zig
-9 src/bun.js/api/BunObject.zig
-14 src/install/install_binding.zig
-14 src/fd.zig
-14 src/bun.js/node/path.zig
-14 scripts/pack-codegen-for-zig-team.sh
-17 src/bun.js/test/diff_format.zig
```
`git diff --numstat origin/main...HEAD | awk '{ print ($1-$2)"\t"$3 }' |
sort -rn`
---------
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Dylan Conway <dylan.conway567@gmail.com>
Co-authored-by: Meghan Denny <meghan@bun.com>
Co-authored-by: tayor.fish <contact@taylor.fish>
422 lines
18 KiB
Zig
422 lines
18 KiB
Zig
pub const css = @import("./css_parser.zig");
|
|
pub const css_values = @import("./values/values.zig");
|
|
pub const Error = css.Error;
|
|
const Location = css.Location;
|
|
|
|
/// A printer error.
|
|
pub const PrinterError = Err(PrinterErrorKind);
|
|
|
|
pub fn fmtPrinterError() PrinterError {
|
|
return .{
|
|
.kind = .fmt_error,
|
|
.loc = null,
|
|
};
|
|
}
|
|
|
|
/// An error with a source location.
|
|
pub fn Err(comptime T: type) type {
|
|
return struct {
|
|
/// The type of error that occurred.
|
|
kind: T,
|
|
/// The location where the error occurred.
|
|
loc: ?ErrorLocation,
|
|
|
|
pub fn format(
|
|
this: @This(),
|
|
writer: *std.Io.Writer,
|
|
) !void {
|
|
if (@hasDecl(T, "format")) {
|
|
return this.kind.format(writer);
|
|
}
|
|
@compileError("format not implemented for " ++ @typeName(T));
|
|
}
|
|
|
|
pub fn toErrorInstance(this: *const @This(), globalThis: *bun.jsc.JSGlobalObject) !bun.jsc.JSValue {
|
|
var str = try bun.String.createFormat("{f}", .{this.kind});
|
|
defer str.deref();
|
|
return str.toErrorInstance(globalThis);
|
|
}
|
|
|
|
pub fn fromParseError(err: ParseError(ParserError), filename: []const u8) Err(ParserError) {
|
|
if (T != ParserError) {
|
|
@compileError("Called .fromParseError() when T is not ParserError");
|
|
}
|
|
|
|
const kind = switch (err.kind) {
|
|
.basic => |b| switch (b) {
|
|
.unexpected_token => |t| ParserError{ .unexpected_token = t },
|
|
.end_of_input => ParserError.end_of_input,
|
|
.at_rule_invalid => |a| ParserError{ .at_rule_invalid = a },
|
|
.at_rule_body_invalid => ParserError.at_rule_body_invalid,
|
|
.qualified_rule_invalid => ParserError.qualified_rule_invalid,
|
|
},
|
|
.custom => |c| c,
|
|
};
|
|
|
|
return .{
|
|
.kind = kind,
|
|
.loc = ErrorLocation{
|
|
.filename = filename,
|
|
.line = err.location.line,
|
|
.column = err.location.column,
|
|
},
|
|
};
|
|
}
|
|
|
|
pub fn addToLogger(this: @This(), log: *logger.Log, source: *const logger.Source, allocator: std.mem.Allocator) !void {
|
|
try log.addMsg(.{
|
|
.kind = .err,
|
|
.data = .{
|
|
.location = if (this.loc) |*loc| try loc.toLocation(source, allocator) else null,
|
|
.text = try std.fmt.allocPrint(allocator, "{f}", .{this.kind}),
|
|
},
|
|
});
|
|
|
|
log.errors += 1;
|
|
}
|
|
};
|
|
}
|
|
|
|
/// Extensible parse errors that can be encountered by client parsing implementations.
|
|
pub fn ParseError(comptime T: type) type {
|
|
return struct {
|
|
/// Details of this error
|
|
kind: ParserErrorKind(T),
|
|
/// Location where this error occurred
|
|
location: css.SourceLocation,
|
|
|
|
pub fn basic(this: @This()) BasicParseError {
|
|
return switch (this.kind) {
|
|
.basic => |kind| BasicParseError{
|
|
.kind = kind,
|
|
.location = this.location,
|
|
},
|
|
.custom => @panic("Not a basic parse error. This is a bug in Bun's css parser."),
|
|
};
|
|
}
|
|
};
|
|
}
|
|
|
|
pub fn ParserErrorKind(comptime T: type) type {
|
|
return union(enum) {
|
|
/// A fundamental parse error from a built-in parsing routine.
|
|
basic: BasicParseErrorKind,
|
|
/// A parse error reported by downstream consumer code.
|
|
custom: T,
|
|
|
|
pub fn format(this: @This(), writer: *std.Io.Writer) !void {
|
|
return switch (this) {
|
|
inline else => |kind| try kind.format(writer),
|
|
};
|
|
}
|
|
};
|
|
}
|
|
|
|
/// Details about a `BasicParseError`
|
|
pub const BasicParseErrorKind = union(enum) {
|
|
/// An unexpected token was encountered.
|
|
unexpected_token: css.Token,
|
|
/// The end of the input was encountered unexpectedly.
|
|
end_of_input,
|
|
/// An `@` rule was encountered that was invalid.
|
|
at_rule_invalid: []const u8,
|
|
/// The body of an '@' rule was invalid.
|
|
at_rule_body_invalid,
|
|
/// A qualified rule was encountered that was invalid.
|
|
qualified_rule_invalid,
|
|
|
|
pub fn format(this: BasicParseErrorKind, writer: *std.Io.Writer) !void {
|
|
return switch (this) {
|
|
.unexpected_token => |token| {
|
|
try writer.print("unexpected token: {f}", .{token});
|
|
},
|
|
.end_of_input => {
|
|
try writer.print("unexpected end of input", .{});
|
|
},
|
|
.at_rule_invalid => |rule| {
|
|
try writer.print("invalid @ rule encountered: '@{s}'", .{rule});
|
|
},
|
|
.at_rule_body_invalid => {
|
|
// try writer.print("invalid @ body rule encountered: '@{s}'", .{});
|
|
try writer.print("invalid @ body rule encountered", .{});
|
|
},
|
|
.qualified_rule_invalid => {
|
|
try writer.print("invalid qualified rule encountered", .{});
|
|
},
|
|
};
|
|
}
|
|
};
|
|
|
|
/// A line and column location within a source file.
|
|
pub const ErrorLocation = struct {
|
|
/// The filename in which the error occurred.
|
|
filename: []const u8,
|
|
/// The line number, starting from 0.
|
|
line: u32,
|
|
/// The column number, starting from 1.
|
|
column: u32,
|
|
|
|
pub fn withFilename(this: ErrorLocation, filename: []const u8) ErrorLocation {
|
|
return ErrorLocation{
|
|
.filename = filename,
|
|
.line = this.line,
|
|
.column = this.column,
|
|
};
|
|
}
|
|
|
|
pub fn format(this: *const @This(), writer: *std.Io.Writer) !void {
|
|
try writer.print("{s}:{d}:{d}", .{ this.filename, this.line, this.column });
|
|
}
|
|
|
|
pub fn toLocation(this: @This(), source: *const logger.Source, allocator: Allocator) !logger.Location {
|
|
return logger.Location{
|
|
.file = source.path.text,
|
|
.namespace = source.path.namespace,
|
|
.line = @intCast(this.line + 1),
|
|
.column = @intCast(this.column),
|
|
.line_text = if (bun.strings.getLinesInText(source.contents, this.line, 1)) |lines| try allocator.dupe(u8, lines.buffer[0]) else null,
|
|
};
|
|
}
|
|
};
|
|
|
|
/// A printer error type.
|
|
pub const PrinterErrorKind = union(enum) {
|
|
/// An ambiguous relative `url()` was encountered in a custom property declaration.
|
|
ambiguous_url_in_custom_property: struct {
|
|
/// The ambiguous URL.
|
|
url: []const u8,
|
|
},
|
|
/// A [std::fmt::Error](std::fmt::Error) was encountered in the underlying destination.
|
|
fmt_error,
|
|
/// The CSS modules `composes` property cannot be used within nested rules.
|
|
invalid_composes_nesting,
|
|
/// The CSS modules `composes` property cannot be used with a simple class selector.
|
|
invalid_composes_selector,
|
|
/// The CSS modules pattern must end with `[local]` for use in CSS grid.
|
|
invalid_css_modules_pattern_in_grid,
|
|
no_import_records,
|
|
|
|
pub fn format(this: @This(), writer: *std.Io.Writer) !void {
|
|
return switch (this) {
|
|
.ambiguous_url_in_custom_property => |data| writer.print("Ambiguous relative URL '{s}' in custom property declaration", .{data.url}),
|
|
.fmt_error => writer.writeAll("Formatting error occurred"),
|
|
.invalid_composes_nesting => writer.writeAll("The 'composes' property cannot be used within nested rules"),
|
|
.invalid_composes_selector => writer.writeAll("The 'composes' property can only be used with a simple class selector"),
|
|
.invalid_css_modules_pattern_in_grid => writer.writeAll("CSS modules pattern must end with '[local]' when used in CSS grid"),
|
|
.no_import_records => writer.writeAll("No import records found"),
|
|
};
|
|
}
|
|
};
|
|
|
|
/// A parser error.
|
|
pub const ParserError = union(enum) {
|
|
/// An at rule body was invalid.
|
|
at_rule_body_invalid,
|
|
/// An at rule prelude was invalid.
|
|
at_rule_prelude_invalid,
|
|
/// An unknown or unsupported at rule was encountered.
|
|
at_rule_invalid: []const u8,
|
|
/// Unexpectedly encountered the end of input data.
|
|
end_of_input,
|
|
/// A declaration was invalid.
|
|
invalid_declaration,
|
|
/// A media query was invalid.
|
|
invalid_media_query,
|
|
/// Invalid CSS nesting.
|
|
invalid_nesting,
|
|
/// The @nest rule is deprecated.
|
|
deprecated_nest_rule,
|
|
/// An invalid selector in an `@page` rule.
|
|
invalid_page_selector,
|
|
/// An invalid value was encountered.
|
|
invalid_value,
|
|
/// Invalid qualified rule.
|
|
qualified_rule_invalid,
|
|
/// A selector was invalid.
|
|
selector_error: SelectorError,
|
|
/// An `@import` rule was encountered after any rule besides `@charset` or `@layer`.
|
|
unexpected_import_rule,
|
|
/// A `@namespace` rule was encountered after any rules besides `@charset`, `@import`, or `@layer`.
|
|
unexpected_namespace_rule,
|
|
/// An unexpected token was encountered.
|
|
unexpected_token: css.Token,
|
|
/// Maximum nesting depth was reached.
|
|
maximum_nesting_depth,
|
|
unexpected_value: struct {
|
|
expected: []const u8,
|
|
received: []const u8,
|
|
},
|
|
|
|
pub fn format(this: @This(), writer: *std.Io.Writer) !void {
|
|
return switch (this) {
|
|
.at_rule_body_invalid => writer.writeAll("Invalid at-rule body"),
|
|
.at_rule_prelude_invalid => writer.writeAll("Invalid at-rule prelude"),
|
|
.at_rule_invalid => |name| writer.print("Unknown at-rule @{s}", .{name}),
|
|
.end_of_input => writer.writeAll("Unexpected end of input"),
|
|
.invalid_declaration => writer.writeAll("Invalid declaration"),
|
|
.invalid_media_query => writer.writeAll("Invalid media query"),
|
|
.invalid_nesting => writer.writeAll("Invalid CSS nesting"),
|
|
.deprecated_nest_rule => writer.writeAll("The @nest rule is deprecated, use standard CSS nesting instead"),
|
|
.invalid_page_selector => writer.writeAll("Invalid @page selector"),
|
|
.invalid_value => writer.writeAll("Invalid value"),
|
|
.qualified_rule_invalid => writer.writeAll("Invalid qualified rule"),
|
|
.selector_error => |err| writer.print("Invalid selector. {f}", .{err}),
|
|
.unexpected_import_rule => writer.writeAll("@import rules must come before any other rules except @charset and @layer"),
|
|
.unexpected_namespace_rule => writer.writeAll("@namespace rules must come before any other rules except @charset, @import, and @layer"),
|
|
.unexpected_token => |token| writer.print("Unexpected token: {f}", .{token}),
|
|
.maximum_nesting_depth => writer.writeAll("Maximum CSS nesting depth exceeded"),
|
|
.unexpected_value => |v| writer.print("Expected {s}, received {s}", .{ v.expected, v.received }),
|
|
};
|
|
}
|
|
};
|
|
|
|
/// The fundamental parsing errors that can be triggered by built-in parsing routines.
|
|
pub const BasicParseError = struct {
|
|
/// Details of this error
|
|
kind: BasicParseErrorKind,
|
|
/// Location where this error occurred
|
|
location: css.SourceLocation,
|
|
|
|
pub fn intoParseError(
|
|
this: @This(),
|
|
comptime T: type,
|
|
) ParseError(T) {
|
|
return ParseError(T){
|
|
.kind = .{ .basic = this.kind },
|
|
.location = this.location,
|
|
};
|
|
}
|
|
|
|
pub inline fn intoDefaultParseError(
|
|
this: @This(),
|
|
) ParseError(ParserError) {
|
|
return ParseError(ParserError){
|
|
.kind = .{ .basic = this.kind },
|
|
.location = this.location,
|
|
};
|
|
}
|
|
};
|
|
|
|
/// A selector parsing error.
|
|
pub const SelectorError = union(enum) {
|
|
/// An unexpected token was found in an attribute selector.
|
|
bad_value_in_attr: css.Token,
|
|
/// An unexpected token was found in a class selector.
|
|
class_needs_ident: css.Token,
|
|
/// A dangling combinator was found.
|
|
dangling_combinator,
|
|
/// An empty selector.
|
|
empty_selector,
|
|
/// A `|` was expected in an attribute selector.
|
|
expected_bar_in_attr: css.Token,
|
|
/// A namespace was expected.
|
|
expected_namespace: []const u8,
|
|
/// An unexpected token was encountered in a namespace.
|
|
explicit_namespace_unexpected_token: css.Token,
|
|
/// An invalid pseudo class was encountered after a pseudo element.
|
|
invalid_pseudo_class_after_pseudo_element,
|
|
/// An invalid pseudo class was encountered after a `-webkit-scrollbar` pseudo element.
|
|
invalid_pseudo_class_after_webkit_scrollbar,
|
|
/// A `-webkit-scrollbar` state was encountered before a `-webkit-scrollbar` pseudo element.
|
|
invalid_pseudo_class_before_webkit_scrollbar,
|
|
/// Invalid qualified name in attribute selector.
|
|
invalid_qual_name_in_attr: css.Token,
|
|
/// The current token is not allowed in this state.
|
|
invalid_state,
|
|
/// The selector is required to have the `&` nesting selector at the start.
|
|
missing_nesting_prefix,
|
|
/// The selector is missing a `&` nesting selector.
|
|
missing_nesting_selector,
|
|
/// No qualified name in attribute selector.
|
|
no_qualified_name_in_attribute_selector: css.Token,
|
|
/// An invalid token was encountered in a pseudo element.
|
|
pseudo_element_expected_ident: css.Token,
|
|
/// An unexpected identifier was encountered.
|
|
unexpected_ident: []const u8,
|
|
/// An unexpected token was encountered inside an attribute selector.
|
|
unexpected_token_in_attribute_selector: css.Token,
|
|
/// An unsupported pseudo class or pseudo element was encountered.
|
|
unsupported_pseudo_class_or_element: []const u8,
|
|
unexpected_selector_after_pseudo_element: css.Token,
|
|
ambiguous_css_module_class: []const u8,
|
|
|
|
pub fn format(this: @This(), writer: *std.Io.Writer) !void {
|
|
return switch (this) {
|
|
.dangling_combinator => try writer.writeAll("Found a dangling combinator with no selector"),
|
|
.empty_selector => try writer.writeAll("Empty selector is not allowed"),
|
|
.invalid_state => try writer.writeAll("Token is not allowed in this state"),
|
|
.missing_nesting_prefix => try writer.writeAll("Selector must start with the '&' nesting selector"),
|
|
.missing_nesting_selector => try writer.writeAll("Missing '&' nesting selector"),
|
|
.invalid_pseudo_class_after_pseudo_element => try writer.writeAll("Invalid pseudo-class after pseudo-element"),
|
|
.invalid_pseudo_class_after_webkit_scrollbar => try writer.writeAll("Invalid pseudo-class after -webkit-scrollbar"),
|
|
.invalid_pseudo_class_before_webkit_scrollbar => try writer.writeAll("-webkit-scrollbar state found before -webkit-scrollbar pseudo-element"),
|
|
|
|
.expected_namespace => |str| try writer.print("Expected namespace '{s}'", .{str}),
|
|
.unexpected_ident => |str| try writer.print("Unexpected identifier '{s}'", .{str}),
|
|
.unsupported_pseudo_class_or_element => |str| try writer.print("Unsupported pseudo-class or pseudo-element '{s}'", .{str}),
|
|
|
|
.bad_value_in_attr => |tok| try writer.print("Invalid value in attribute selector: {f}", .{tok}),
|
|
.class_needs_ident => |tok| try writer.print("Expected identifier after '.' in class selector, found: {f}", .{tok}),
|
|
.expected_bar_in_attr => |tok| try writer.print("Expected '|' in attribute selector, found: {f}", .{tok}),
|
|
.explicit_namespace_unexpected_token => |tok| try writer.print("Unexpected token in namespace: {f}", .{tok}),
|
|
.invalid_qual_name_in_attr => |tok| try writer.print("Invalid qualified name in attribute selector: {f}", .{tok}),
|
|
.no_qualified_name_in_attribute_selector => |tok| try writer.print("Missing qualified name in attribute selector: {f}", .{tok}),
|
|
.pseudo_element_expected_ident => |tok| try writer.print("Expected identifier in pseudo-element, found: {f}", .{tok}),
|
|
.unexpected_token_in_attribute_selector => |tok| try writer.print("Unexpected token in attribute selector: {f}", .{tok}),
|
|
.unexpected_selector_after_pseudo_element => |tok| try writer.print("Unexpected selector after pseudo-element: {f}", .{tok}),
|
|
.ambiguous_css_module_class => |name| try writer.print("CSS module class: '{s}' is currently not supported.", .{name}),
|
|
};
|
|
}
|
|
};
|
|
|
|
pub fn ErrorWithLocation(comptime T: type) type {
|
|
return struct {
|
|
kind: T,
|
|
loc: css.Location,
|
|
};
|
|
}
|
|
|
|
pub const MinifyErr = error{
|
|
minify_err,
|
|
};
|
|
pub const MinifyError = ErrorWithLocation(MinifyErrorKind);
|
|
/// A transformation error.
|
|
pub const MinifyErrorKind = union(enum) {
|
|
/// A circular `@custom-media` rule was detected.
|
|
circular_custom_media: struct {
|
|
/// The name of the `@custom-media` rule that was referenced circularly.
|
|
name: []const u8,
|
|
},
|
|
/// Attempted to reference a custom media rule that doesn't exist.
|
|
custom_media_not_defined: struct {
|
|
/// The name of the `@custom-media` rule that was not defined.
|
|
name: []const u8,
|
|
},
|
|
/// Boolean logic with media types in @custom-media rules is not supported.
|
|
unsupported_custom_media_boolean_logic: struct {
|
|
/// The source location of the `@custom-media` rule with unsupported boolean logic.
|
|
custom_media_loc: Location,
|
|
},
|
|
|
|
pub fn format(this: *const @This(), writer: *std.Io.Writer) std.Io.Writer.Error!void {
|
|
return switch (this.*) {
|
|
.circular_custom_media => |name| try writer.print("Circular @custom-media rule: \"{s}\"", .{name.name}),
|
|
.custom_media_not_defined => |name| try writer.print("Custom media rule \"{s}\" not defined", .{name.name}),
|
|
.unsupported_custom_media_boolean_logic => |custom_media_loc| try writer.print(
|
|
"Unsupported boolean logic in custom media rule at line {d}, column {d}",
|
|
.{
|
|
custom_media_loc.custom_media_loc.line,
|
|
custom_media_loc.custom_media_loc.column,
|
|
},
|
|
),
|
|
};
|
|
}
|
|
};
|
|
|
|
const bun = @import("bun");
|
|
const std = @import("std");
|
|
const Allocator = std.mem.Allocator;
|
|
|
|
const logger = bun.logger;
|
|
const Log = logger.Log;
|