about summary refs log tree commit diff
path: root/users/grfn/achilles
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2021-04-11T21·53-0400
committerglittershark <grfn@gws.fyi>2021-04-12T14·45+0000
commit6266c5d32f9ff651fcfc3a4cc0c68e89da56ca65 (patch)
tree5be3967585787c4456e17cb29423770217fdcede /users/grfn/achilles
parent968effb5dc1a4617a0dceaffc70e986abe300c6e (diff)
refactor(users/glittershark): Rename to grfn r/2485
Rename my //users directory and all places that refer to glittershark to
grfn, including nix references and documentation.

This may require some extra attention inside of gerrit's database after
it lands to allow me to actually push things.

Change-Id: I4728b7ec2c60024392c1c1fa6e0d4a59b3e266fa
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2933
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
Reviewed-by: lukegb <lukegb@tvl.fyi>
Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to '')
-rw-r--r--users/grfn/achilles/.envrc (renamed from users/glittershark/achilles/.envrc)0
-rw-r--r--users/grfn/achilles/.gitignore (renamed from users/glittershark/achilles/.gitignore)0
-rw-r--r--users/grfn/achilles/Cargo.lock (renamed from users/glittershark/achilles/Cargo.lock)0
-rw-r--r--users/grfn/achilles/Cargo.toml (renamed from users/glittershark/achilles/Cargo.toml)0
-rw-r--r--users/grfn/achilles/ach/.gitignore (renamed from users/glittershark/achilles/ach/.gitignore)0
-rw-r--r--users/grfn/achilles/ach/Makefile (renamed from users/glittershark/achilles/ach/Makefile)0
-rw-r--r--users/grfn/achilles/ach/externs.ach (renamed from users/glittershark/achilles/ach/externs.ach)0
-rw-r--r--users/grfn/achilles/ach/functions.ach (renamed from users/glittershark/achilles/ach/functions.ach)0
-rw-r--r--users/grfn/achilles/ach/simple.ach (renamed from users/glittershark/achilles/ach/simple.ach)0
-rw-r--r--users/grfn/achilles/ach/units.ach (renamed from users/glittershark/achilles/ach/units.ach)0
-rw-r--r--users/grfn/achilles/default.nix (renamed from users/glittershark/achilles/default.nix)0
-rw-r--r--users/grfn/achilles/shell.nix (renamed from users/glittershark/achilles/shell.nix)0
-rw-r--r--users/grfn/achilles/src/ast/hir.rs (renamed from users/glittershark/achilles/src/ast/hir.rs)0
-rw-r--r--users/grfn/achilles/src/ast/mod.rs (renamed from users/glittershark/achilles/src/ast/mod.rs)0
-rw-r--r--users/grfn/achilles/src/codegen/llvm.rs (renamed from users/glittershark/achilles/src/codegen/llvm.rs)0
-rw-r--r--users/grfn/achilles/src/codegen/mod.rs (renamed from users/glittershark/achilles/src/codegen/mod.rs)0
-rw-r--r--users/grfn/achilles/src/commands/check.rs (renamed from users/glittershark/achilles/src/commands/check.rs)0
-rw-r--r--users/grfn/achilles/src/commands/compile.rs (renamed from users/glittershark/achilles/src/commands/compile.rs)0
-rw-r--r--users/grfn/achilles/src/commands/eval.rs (renamed from users/glittershark/achilles/src/commands/eval.rs)0
-rw-r--r--users/grfn/achilles/src/commands/mod.rs (renamed from users/glittershark/achilles/src/commands/mod.rs)0
-rw-r--r--users/grfn/achilles/src/common/env.rs (renamed from users/glittershark/achilles/src/common/env.rs)0
-rw-r--r--users/grfn/achilles/src/common/error.rs (renamed from users/glittershark/achilles/src/common/error.rs)0
-rw-r--r--users/grfn/achilles/src/common/mod.rs (renamed from users/glittershark/achilles/src/common/mod.rs)0
-rw-r--r--users/grfn/achilles/src/common/namer.rs (renamed from users/glittershark/achilles/src/common/namer.rs)0
-rw-r--r--users/grfn/achilles/src/compiler.rs (renamed from users/glittershark/achilles/src/compiler.rs)0
-rw-r--r--users/grfn/achilles/src/interpreter/error.rs (renamed from users/glittershark/achilles/src/interpreter/error.rs)0
-rw-r--r--users/grfn/achilles/src/interpreter/mod.rs (renamed from users/glittershark/achilles/src/interpreter/mod.rs)0
-rw-r--r--users/grfn/achilles/src/interpreter/value.rs (renamed from users/glittershark/achilles/src/interpreter/value.rs)0
-rw-r--r--users/grfn/achilles/src/main.rs (renamed from users/glittershark/achilles/src/main.rs)0
-rw-r--r--users/grfn/achilles/src/parser/expr.rs (renamed from users/glittershark/achilles/src/parser/expr.rs)0
-rw-r--r--users/grfn/achilles/src/parser/macros.rs (renamed from users/glittershark/achilles/src/parser/macros.rs)0
-rw-r--r--users/grfn/achilles/src/parser/mod.rs (renamed from users/glittershark/achilles/src/parser/mod.rs)0
-rw-r--r--users/grfn/achilles/src/parser/type_.rs (renamed from users/glittershark/achilles/src/parser/type_.rs)0
-rw-r--r--users/grfn/achilles/src/passes/hir/mod.rs (renamed from users/glittershark/achilles/src/passes/hir/mod.rs)0
-rw-r--r--users/grfn/achilles/src/passes/hir/monomorphize.rs (renamed from users/glittershark/achilles/src/passes/hir/monomorphize.rs)0
-rw-r--r--users/grfn/achilles/src/passes/hir/strip_positive_units.rs (renamed from users/glittershark/achilles/src/passes/hir/strip_positive_units.rs)0
-rw-r--r--users/grfn/achilles/src/passes/mod.rs (renamed from users/glittershark/achilles/src/passes/mod.rs)0
-rw-r--r--users/grfn/achilles/src/tc/mod.rs (renamed from users/glittershark/achilles/src/tc/mod.rs)0
-rw-r--r--users/grfn/achilles/tests/compile.rs (renamed from users/glittershark/achilles/tests/compile.rs)0
39 files changed, 0 insertions, 0 deletions
diff --git a/users/glittershark/achilles/.envrc b/users/grfn/achilles/.envrc
index 051d09d292..051d09d292 100644
--- a/users/glittershark/achilles/.envrc
+++ b/users/grfn/achilles/.envrc
diff --git a/users/glittershark/achilles/.gitignore b/users/grfn/achilles/.gitignore
index ea8c4bf7f3..ea8c4bf7f3 100644
--- a/users/glittershark/achilles/.gitignore
+++ b/users/grfn/achilles/.gitignore
diff --git a/users/glittershark/achilles/Cargo.lock b/users/grfn/achilles/Cargo.lock
index 30e5e021f1..30e5e021f1 100644
--- a/users/glittershark/achilles/Cargo.lock
+++ b/users/grfn/achilles/Cargo.lock
diff --git a/users/glittershark/achilles/Cargo.toml b/users/grfn/achilles/Cargo.toml
index f091399a0d..f091399a0d 100644
--- a/users/glittershark/achilles/Cargo.toml
+++ b/users/grfn/achilles/Cargo.toml
diff --git a/users/glittershark/achilles/ach/.gitignore b/users/grfn/achilles/ach/.gitignore
index ac5296ebbd..ac5296ebbd 100644
--- a/users/glittershark/achilles/ach/.gitignore
+++ b/users/grfn/achilles/ach/.gitignore
diff --git a/users/glittershark/achilles/ach/Makefile b/users/grfn/achilles/ach/Makefile
index 3a8cd2865e..3a8cd2865e 100644
--- a/users/glittershark/achilles/ach/Makefile
+++ b/users/grfn/achilles/ach/Makefile
diff --git a/users/glittershark/achilles/ach/externs.ach b/users/grfn/achilles/ach/externs.ach
index faf8ce90e3..faf8ce90e3 100644
--- a/users/glittershark/achilles/ach/externs.ach
+++ b/users/grfn/achilles/ach/externs.ach
diff --git a/users/glittershark/achilles/ach/functions.ach b/users/grfn/achilles/ach/functions.ach
index dc6e7a1f3e..dc6e7a1f3e 100644
--- a/users/glittershark/achilles/ach/functions.ach
+++ b/users/grfn/achilles/ach/functions.ach
diff --git a/users/glittershark/achilles/ach/simple.ach b/users/grfn/achilles/ach/simple.ach
index 20f1677235..20f1677235 100644
--- a/users/glittershark/achilles/ach/simple.ach
+++ b/users/grfn/achilles/ach/simple.ach
diff --git a/users/glittershark/achilles/ach/units.ach b/users/grfn/achilles/ach/units.ach
index 70635d978c..70635d978c 100644
--- a/users/glittershark/achilles/ach/units.ach
+++ b/users/grfn/achilles/ach/units.ach
diff --git a/users/glittershark/achilles/default.nix b/users/grfn/achilles/default.nix
index 4ad71455d4..4ad71455d4 100644
--- a/users/glittershark/achilles/default.nix
+++ b/users/grfn/achilles/default.nix
diff --git a/users/glittershark/achilles/shell.nix b/users/grfn/achilles/shell.nix
index cdf74db415..cdf74db415 100644
--- a/users/glittershark/achilles/shell.nix
+++ b/users/grfn/achilles/shell.nix
diff --git a/users/glittershark/achilles/src/ast/hir.rs b/users/grfn/achilles/src/ast/hir.rs
index 0d145d620b..0d145d620b 100644
--- a/users/glittershark/achilles/src/ast/hir.rs
+++ b/users/grfn/achilles/src/ast/hir.rs
diff --git a/users/glittershark/achilles/src/ast/mod.rs b/users/grfn/achilles/src/ast/mod.rs
index 7dc2de8957..7dc2de8957 100644
--- a/users/glittershark/achilles/src/ast/mod.rs
+++ b/users/grfn/achilles/src/ast/mod.rs
diff --git a/users/glittershark/achilles/src/codegen/llvm.rs b/users/grfn/achilles/src/codegen/llvm.rs
index 17dec58b5f..17dec58b5f 100644
--- a/users/glittershark/achilles/src/codegen/llvm.rs
+++ b/users/grfn/achilles/src/codegen/llvm.rs
diff --git a/users/glittershark/achilles/src/codegen/mod.rs b/users/grfn/achilles/src/codegen/mod.rs
index 8ef057dba0..8ef057dba0 100644
--- a/users/glittershark/achilles/src/codegen/mod.rs
+++ b/users/grfn/achilles/src/codegen/mod.rs
diff --git a/users/glittershark/achilles/src/commands/check.rs b/users/grfn/achilles/src/commands/check.rs
index 0bea482c14..0bea482c14 100644
--- a/users/glittershark/achilles/src/commands/check.rs
+++ b/users/grfn/achilles/src/commands/check.rs
diff --git a/users/glittershark/achilles/src/commands/compile.rs b/users/grfn/achilles/src/commands/compile.rs
index be8767575a..be8767575a 100644
--- a/users/glittershark/achilles/src/commands/compile.rs
+++ b/users/grfn/achilles/src/commands/compile.rs
diff --git a/users/glittershark/achilles/src/commands/eval.rs b/users/grfn/achilles/src/commands/eval.rs
index 61a712c08a..61a712c08a 100644
--- a/users/glittershark/achilles/src/commands/eval.rs
+++ b/users/grfn/achilles/src/commands/eval.rs
diff --git a/users/glittershark/achilles/src/commands/mod.rs b/users/grfn/achilles/src/commands/mod.rs
index fd0a822708..fd0a822708 100644
--- a/users/glittershark/achilles/src/commands/mod.rs
+++ b/users/grfn/achilles/src/commands/mod.rs
diff --git a/users/glittershark/achilles/src/common/env.rs b/users/grfn/achilles/src/common/env.rs
index 59a5e46c46..59a5e46c46 100644
--- a/users/glittershark/achilles/src/common/env.rs
+++ b/users/grfn/achilles/src/common/env.rs
diff --git a/users/glittershark/achilles/src/common/error.rs b/users/grfn/achilles/src/common/error.rs
index 51575a895e..51575a895e 100644
--- a/users/glittershark/achilles/src/common/error.rs
+++ b/users/grfn/achilles/src/common/error.rs
diff --git a/users/glittershark/achilles/src/common/mod.rs b/users/grfn/achilles/src/common/mod.rs
index 8368a6dd18..8368a6dd18 100644
--- a/users/glittershark/achilles/src/common/mod.rs
+++ b/users/grfn/achilles/src/common/mod.rs
diff --git a/users/glittershark/achilles/src/common/namer.rs b/users/grfn/achilles/src/common/namer.rs
index 016e9f6ed9..016e9f6ed9 100644
--- a/users/glittershark/achilles/src/common/namer.rs
+++ b/users/grfn/achilles/src/common/namer.rs
diff --git a/users/glittershark/achilles/src/compiler.rs b/users/grfn/achilles/src/compiler.rs
index 45b215473d..45b215473d 100644
--- a/users/glittershark/achilles/src/compiler.rs
+++ b/users/grfn/achilles/src/compiler.rs
diff --git a/users/glittershark/achilles/src/interpreter/error.rs b/users/grfn/achilles/src/interpreter/error.rs
index 268d6f479a..268d6f479a 100644
--- a/users/glittershark/achilles/src/interpreter/error.rs
+++ b/users/grfn/achilles/src/interpreter/error.rs
diff --git a/users/glittershark/achilles/src/interpreter/mod.rs b/users/grfn/achilles/src/interpreter/mod.rs
index a8ba2dd3ac..a8ba2dd3ac 100644
--- a/users/glittershark/achilles/src/interpreter/mod.rs
+++ b/users/grfn/achilles/src/interpreter/mod.rs
diff --git a/users/glittershark/achilles/src/interpreter/value.rs b/users/grfn/achilles/src/interpreter/value.rs
index 55ba42f9de..55ba42f9de 100644
--- a/users/glittershark/achilles/src/interpreter/value.rs
+++ b/users/grfn/achilles/src/interpreter/value.rs
diff --git a/users/glittershark/achilles/src/main.rs b/users/grfn/achilles/src/main.rs
index 5ae1b59b3a..5ae1b59b3a 100644
--- a/users/glittershark/achilles/src/main.rs
+++ b/users/grfn/achilles/src/main.rs
diff --git a/users/glittershark/achilles/src/parser/expr.rs b/users/grfn/achilles/src/parser/expr.rs
index 8a28d00984..8a28d00984 100644
--- a/users/glittershark/achilles/src/parser/expr.rs
+++ b/users/grfn/achilles/src/parser/expr.rs
diff --git a/users/glittershark/achilles/src/parser/macros.rs b/users/grfn/achilles/src/parser/macros.rs
index 406e5c0e69..406e5c0e69 100644
--- a/users/glittershark/achilles/src/parser/macros.rs
+++ b/users/grfn/achilles/src/parser/macros.rs
diff --git a/users/glittershark/achilles/src/parser/mod.rs b/users/grfn/achilles/src/parser/mod.rs
index 3e0081bd39..3e0081bd39 100644
--- a/users/glittershark/achilles/src/parser/mod.rs
+++ b/users/grfn/achilles/src/parser/mod.rs
diff --git a/users/glittershark/achilles/src/parser/type_.rs b/users/grfn/achilles/src/parser/type_.rs
index 8a1081e252..8a1081e252 100644
--- a/users/glittershark/achilles/src/parser/type_.rs
+++ b/users/grfn/achilles/src/parser/type_.rs
diff --git a/users/glittershark/achilles/src/passes/hir/mod.rs b/users/grfn/achilles/src/passes/hir/mod.rs
index 845bfcb7ab..845bfcb7ab 100644
--- a/users/glittershark/achilles/src/passes/hir/mod.rs
+++ b/users/grfn/achilles/src/passes/hir/mod.rs
diff --git a/users/glittershark/achilles/src/passes/hir/monomorphize.rs b/users/grfn/achilles/src/passes/hir/monomorphize.rs
index 251a988f4f..251a988f4f 100644
--- a/users/glittershark/achilles/src/passes/hir/monomorphize.rs
+++ b/users/grfn/achilles/src/passes/hir/monomorphize.rs
diff --git a/users/glittershark/achilles/src/passes/hir/strip_positive_units.rs b/users/grfn/achilles/src/passes/hir/strip_positive_units.rs
index 91b56551c8..91b56551c8 100644
--- a/users/glittershark/achilles/src/passes/hir/strip_positive_units.rs
+++ b/users/grfn/achilles/src/passes/hir/strip_positive_units.rs
diff --git a/users/glittershark/achilles/src/passes/mod.rs b/users/grfn/achilles/src/passes/mod.rs
index 306869bef1..306869bef1 100644
--- a/users/glittershark/achilles/src/passes/mod.rs
+++ b/users/grfn/achilles/src/passes/mod.rs
diff --git a/users/glittershark/achilles/src/tc/mod.rs b/users/grfn/achilles/src/tc/mod.rs
index d27c45075e..d27c45075e 100644
--- a/users/glittershark/achilles/src/tc/mod.rs
+++ b/users/grfn/achilles/src/tc/mod.rs
diff --git a/users/glittershark/achilles/tests/compile.rs b/users/grfn/achilles/tests/compile.rs
index 0f1086bfd8..0f1086bfd8 100644
--- a/users/glittershark/achilles/tests/compile.rs
+++ b/users/grfn/achilles/tests/compile.rs