aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src
diff options
context:
space:
mode:
authorAdolfo OchagavĂ­a <[email protected]>2018-11-07 10:58:34 +0000
committerAdolfo OchagavĂ­a <[email protected]>2018-11-07 10:58:34 +0000
commit3b2ba59526f8e524aa3c1526dda2828a93653ed2 (patch)
tree3ef9368b78dfb558c8b015d0914412d49c479e60 /crates/ra_syntax/src
parente37ba706ccc435346c35042c2b6c4b483494268b (diff)
Use ArrayString instead of hand rolled data structure
Diffstat (limited to 'crates/ra_syntax/src')
-rw-r--r--crates/ra_syntax/src/lib.rs1
-rw-r--r--crates/ra_syntax/src/utils.rs36
-rw-r--r--crates/ra_syntax/src/validation.rs6
3 files changed, 4 insertions, 39 deletions
diff --git a/crates/ra_syntax/src/lib.rs b/crates/ra_syntax/src/lib.rs
index 123002825..319fb947d 100644
--- a/crates/ra_syntax/src/lib.rs
+++ b/crates/ra_syntax/src/lib.rs
@@ -20,6 +20,7 @@
20#![allow(missing_docs)] 20#![allow(missing_docs)]
21//#![warn(unreachable_pub)] // rust-lang/rust#47816 21//#![warn(unreachable_pub)] // rust-lang/rust#47816
22 22
23extern crate arrayvec;
23extern crate drop_bomb; 24extern crate drop_bomb;
24extern crate itertools; 25extern crate itertools;
25extern crate parking_lot; 26extern crate parking_lot;
diff --git a/crates/ra_syntax/src/utils.rs b/crates/ra_syntax/src/utils.rs
index 5bef4a639..cad9544be 100644
--- a/crates/ra_syntax/src/utils.rs
+++ b/crates/ra_syntax/src/utils.rs
@@ -1,6 +1,5 @@
1use crate::{File, SyntaxKind, SyntaxNodeRef, WalkEvent}; 1use crate::{File, SyntaxKind, SyntaxNodeRef, WalkEvent};
2use std::fmt::Write; 2use std::fmt::Write;
3use std::ops::Deref;
4use std::str; 3use std::str;
5 4
6/// Parse a file and create a string representation of the resulting parse tree. 5/// Parse a file and create a string representation of the resulting parse tree.
@@ -80,38 +79,3 @@ pub(crate) fn validate_block_structure(root: SyntaxNodeRef) {
80 } 79 }
81 } 80 }
82} 81}
83
84#[derive(Debug)]
85pub struct MutAsciiString<'a> {
86 buf: &'a mut [u8],
87 len: usize,
88}
89
90impl<'a> MutAsciiString<'a> {
91 pub fn new(buf: &'a mut [u8]) -> MutAsciiString<'a> {
92 MutAsciiString { buf, len: 0 }
93 }
94
95 pub fn as_str(&self) -> &str {
96 str::from_utf8(&self.buf[..self.len]).unwrap()
97 }
98
99 pub fn len(&self) -> usize {
100 self.len
101 }
102
103 pub fn push(&mut self, c: char) {
104 assert!(self.len() < self.buf.len());
105 assert!(c.is_ascii());
106
107 self.buf[self.len] = c as u8;
108 self.len += 1;
109 }
110}
111
112impl<'a> Deref for MutAsciiString<'a> {
113 type Target = str;
114 fn deref(&self) -> &str {
115 self.as_str()
116 }
117}
diff --git a/crates/ra_syntax/src/validation.rs b/crates/ra_syntax/src/validation.rs
index a2509dc90..61cf83c84 100644
--- a/crates/ra_syntax/src/validation.rs
+++ b/crates/ra_syntax/src/validation.rs
@@ -1,11 +1,12 @@
1use std::u32; 1use std::u32;
2 2
3use arrayvec::ArrayString;
4
3use crate::{ 5use crate::{
4 algo::visit::{visitor_ctx, VisitorCtx}, 6 algo::visit::{visitor_ctx, VisitorCtx},
5 ast::{self, AstNode}, 7 ast::{self, AstNode},
6 File, 8 File,
7 string_lexing::{self, CharComponentKind}, 9 string_lexing::{self, CharComponentKind},
8 utils::MutAsciiString,
9 yellow::{ 10 yellow::{
10 SyntaxError, 11 SyntaxError,
11 SyntaxErrorKind::*, 12 SyntaxErrorKind::*,
@@ -76,8 +77,7 @@ fn validate_char(node: ast::Char, errors: &mut Vec<SyntaxError>) {
76 return; 77 return;
77 } 78 }
78 79
79 let mut buf = &mut [0; 6]; 80 let mut code = ArrayString::<[_; 6]>::new();
80 let mut code = MutAsciiString::new(buf);
81 let mut closed = false; 81 let mut closed = false;
82 for c in text[3..].chars() { 82 for c in text[3..].chars() {
83 assert!(!closed, "no characters after escape is closed"); 83 assert!(!closed, "no characters after escape is closed");