Rename 'state' to 'scope'

This commit is contained in:
2022-11-14 22:49:02 -05:00
parent 706b4a586d
commit af88471b3a
21 changed files with 320 additions and 321 deletions

View File

@@ -162,7 +162,7 @@ static void test_tokenize_nil(void) {
TEST_ASSERT_NULL(token2->cell.cdr);
}
static void test_tokenize_statement(void) {
static void test_tokenize_scopement(void) {
response = ucl_tokenize("(foo)");
TEST_ASSERT_NOT_NULL(response);
@@ -344,7 +344,7 @@ int main(void) {
RUN_TEST(test_token_next_symbol_w_whitespace);
RUN_TEST(test_tokenize_empty_str);
RUN_TEST(test_tokenize_nil);
RUN_TEST(test_tokenize_statement);
RUN_TEST(test_tokenize_scopement);
RUN_TEST(test_parse_atom_symbol);
RUN_TEST(test_parse_atom_lparen);
RUN_TEST(test_parse_atom_rparen);