Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

rename RingBuf to VecDeque #14

Merged
merged 1 commit into from
Feb 22, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::num::Float;
use serialize::json::{Json, ToJson};
use regex::Regex;
use std::iter::IteratorExt;
use std::collections::RingBuf;
use std::collections::VecDeque;

pub struct Context {
data: Json,
Expand All @@ -13,7 +13,7 @@ pub struct Context {
static ARRAY_INDEX_MATCHER: Regex = regex!(r"\[\d+\]$");

#[inline]
fn parse_json_visitor<'a>(path_stack: &mut RingBuf<&'a str>, path: &'a String) {
fn parse_json_visitor<'a>(path_stack: &mut VecDeque<&'a str>, path: &'a String) {
for p in (*path).split('/') {
match p {
"this" | "." | "" => {
Expand Down Expand Up @@ -49,7 +49,7 @@ impl Context {
}

pub fn navigate(&self, path: &String, relative_path: &String) -> &Json {
let mut path_stack :RingBuf<&str> = RingBuf::new();
let mut path_stack :VecDeque<&str> = VecDeque::new();
parse_json_visitor(&mut path_stack, path);
parse_json_visitor(&mut path_stack, relative_path);

Expand Down
6 changes: 3 additions & 3 deletions src/template.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::ops::BitOr;
use std::num::FromPrimitive;
use std::fmt::{self, Debug, Formatter};
use std::iter::IteratorExt;
use std::collections::{BTreeMap, RingBuf};
use std::collections::{BTreeMap, VecDeque};
use std::string::ToString;
use serialize::json::Json;

Expand Down Expand Up @@ -186,8 +186,8 @@ fn process_whitespace(buf: &String, wso: &mut WhiteSpaceOmit) -> String {

impl Template {
pub fn compile(source: String) -> Result<Template, TemplateError> {
let mut helper_stack: RingBuf<Helper> = RingBuf::new();
let mut template_stack: RingBuf<Template> = RingBuf::new();
let mut helper_stack: VecDeque<Helper> = VecDeque::new();
let mut template_stack: VecDeque<Template> = VecDeque::new();
template_stack.push_front(Template{ elements: Vec::new() });

let mut buffer: String = String::new();
Expand Down