chore: add file headings

This commit is contained in:
Guillem L. Jara
2026-05-07 15:03:33 +02:00
parent 35cf75424c
commit 1c859fb126
7 changed files with 31 additions and 0 deletions
+5
View File
@@ -1,3 +1,8 @@
// This file is part of the uutils awk package.
//
// For the full copyright and license information, please view the LICENSE
// files that was distributed with this source code.
use ariadne::{Color, Label, Report, ReportKind, Source};
use lexer::{LexingError, Span};
use thiserror::Error;
+5
View File
@@ -1,3 +1,8 @@
// This file is part of the uutils awk package.
//
// For the full copyright and license information, please view the LICENSE
// files that was distributed with this source code.
use std::fmt::{Debug, Display, Formatter, Result, Write};
use crate::{
+1
View File
@@ -2,6 +2,7 @@
//
// For the full copyright and license information, please view the LICENSE
// files that was distributed with this source code.
#![forbid(unsafe_code)]
mod ast;
+5
View File
@@ -1,3 +1,8 @@
// This file is part of the uutils awk package.
//
// For the full copyright and license information, please view the LICENSE
// files that was distributed with this source code.
use lexer::Token;
use crate::{
+5
View File
@@ -1,3 +1,8 @@
// This file is part of the uutils awk package.
//
// For the full copyright and license information, please view the LICENSE
// files that was distributed with this source code.
use std::fmt::Debug;
use bumpalo::Bump;
+5
View File
@@ -1,3 +1,8 @@
// This file is part of the uutils awk package.
//
// For the full copyright and license information, please view the LICENSE
// files that was distributed with this source code.
use std::env;
use uutests::util::TestScenario;
+5
View File
@@ -1,3 +1,8 @@
// This file is part of the uutils awk package.
//
// For the full copyright and license information, please view the LICENSE
// files that was distributed with this source code.
use crate::ucmd;
#[test]