mirror of
https://github.com/uutils/awk.git
synced 2026-06-10 16:15:04 -07:00
chore: add file headings
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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::{
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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::{
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user