diff options
| author | Alex Saveau <saveau.alexandre@gmail.com> | 2023-04-23 05:35:18 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-23 14:35:18 +0200 |
| commit | b75cad2d3be07c1e9d2e3e3a5e576603506f8d2f (patch) | |
| tree | 0dd702628723567dadff5befa8d984dcbba6f4cb /src | |
| parent | 561ff979d574f496415c0499345d41da2e1f6e1e (diff) | |
Parallelize tests (#900)
Diffstat (limited to 'src')
| -rw-r--r-- | src/syntax/source.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/syntax/source.rs b/src/syntax/source.rs index 2a474b17..b325cf9e 100644 --- a/src/syntax/source.rs +++ b/src/syntax/source.rs @@ -18,6 +18,7 @@ use crate::util::{PathExt, StrExt}; /// /// All line and column indices start at zero, just like byte indices. Only for /// user-facing display, you should add 1 to them. +#[derive(Clone)] pub struct Source { id: SourceId, path: PathBuf, |
