Skip to content

Commit

Permalink
refactor: rename api for modify
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Dec 24, 2021
1 parent 20ec718 commit 84ce838
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion quake_core/src/parser/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pub mod ast;
pub mod dsl_parser;
pub mod errors;
pub mod quake;
pub mod quake_parser;
2 changes: 1 addition & 1 deletion quake_core/src/parser/quake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ use std::error::Error;
use crate::parser::ast::{
SimpleLayoutDecl, SourceUnitPart, TransflowDecl, TransflowEnum, TransflowSource,
};
use crate::parser::dsl_parser::parse;
use crate::parser::errors::QuakeParserError;
use crate::parser::quake_parser::parse;

#[derive(Debug, Serialize, Deserialize, Default)]
pub struct QuakeIt {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ pub fn replace_string_markers(input: &str) -> String {
#[cfg(test)]
mod tests {
use crate::parser::ast::{SourceUnitPart, TransflowEnum, TransflowSource};
use crate::parser::dsl_parser::parse;
use crate::parser::quake_parser::parse;

#[test]
fn should_parse_add_todo() {
Expand Down

0 comments on commit 84ce838

Please sign in to comment.