diff --git a/benches/bench.rs b/benches/bench.rs index 10f6d6f..ba7f81c 100644 --- a/benches/bench.rs +++ b/benches/bench.rs @@ -1,13 +1,3 @@ -// Copyright 2018 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - #![feature(test)] extern crate regex_syntax; diff --git a/src/ast/mod.rs b/src/ast/mod.rs index 473d6eb..6cd0bc4 100644 --- a/src/ast/mod.rs +++ b/src/ast/mod.rs @@ -1,13 +1,3 @@ -// Copyright 2017 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - /*! Defines an abstract syntax for regular expressions. */ diff --git a/src/ast/parse.rs b/src/ast/parse.rs index 6f1757c..33115b9 100644 --- a/src/ast/parse.rs +++ b/src/ast/parse.rs @@ -1,13 +1,3 @@ -// Copyright 2018 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - /*! This module provides a regular expression parser. */ diff --git a/src/ast/print.rs b/src/ast/print.rs index 36aa498..1b9bc41 100644 --- a/src/ast/print.rs +++ b/src/ast/print.rs @@ -1,13 +1,3 @@ -// Copyright 2018 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - /*! This module provides a regular expression printer for `Ast`. */ diff --git a/src/ast/visitor.rs b/src/ast/visitor.rs index a34c557..3eaa4b0 100644 --- a/src/ast/visitor.rs +++ b/src/ast/visitor.rs @@ -1,13 +1,3 @@ -// Copyright 2018 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - use std::fmt; use ast::{self, Ast}; diff --git a/src/hir/literal/mod.rs b/src/hir/literal/mod.rs index 84d7062..0971410 100644 --- a/src/hir/literal/mod.rs +++ b/src/hir/literal/mod.rs @@ -1,13 +1,3 @@ -// Copyright 2018 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - /*! Provides routines for extracting literal prefixes and suffixes from an `Hir`. */ diff --git a/src/hir/mod.rs b/src/hir/mod.rs index de49607..e938de8 100644 --- a/src/hir/mod.rs +++ b/src/hir/mod.rs @@ -1,13 +1,3 @@ -// Copyright 2018 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - /*! Defines a high-level intermediate representation for regular expressions. */ diff --git a/src/hir/translate.rs b/src/hir/translate.rs index 1864109..359ec7f 100644 --- a/src/hir/translate.rs +++ b/src/hir/translate.rs @@ -1,13 +1,3 @@ -// Copyright 2018 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - /*! Defines a translator that converts an `Ast` to an `Hir`. */ diff --git a/src/hir/visitor.rs b/src/hir/visitor.rs index 7acd3c9..81a9e98 100644 --- a/src/hir/visitor.rs +++ b/src/hir/visitor.rs @@ -1,13 +1,3 @@ -// Copyright 2018 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - use hir::{self, Hir, HirKind}; /// A trait for visiting the high-level IR (HIR) in depth first order. diff --git a/src/lib.rs b/src/lib.rs index 57ab27e..fcdd840 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,13 +1,3 @@ -// Copyright 2018 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - /*! This crate provides a robust regular expression parser.