mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-27 05:18:11 +08:00
Add line numbers to file paths in the website editor structure docs (#3130)
* added the line number to existing path * Update JS parser to use line numbers --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
This commit is contained in:
co-authored by
Keavon Chambers
parent
82f7dc7062
commit
b697cc8131
@@ -49,11 +49,11 @@ pub trait HierarchicalTree {
|
||||
fn build_message_tree() -> DebugMessageTree;
|
||||
|
||||
fn message_handler_data_str() -> MessageData {
|
||||
MessageData::new(String::new(), Vec::new(), "")
|
||||
MessageData::new(String::new(), Vec::new(), "", 0)
|
||||
}
|
||||
|
||||
fn message_handler_str() -> MessageData {
|
||||
MessageData::new(String::new(), Vec::new(), "")
|
||||
MessageData::new(String::new(), Vec::new(), "", 0)
|
||||
}
|
||||
|
||||
fn path() -> &'static str {
|
||||
@@ -64,5 +64,6 @@ pub trait HierarchicalTree {
|
||||
pub trait ExtractField {
|
||||
fn field_types() -> Vec<(String, usize)>;
|
||||
fn path() -> &'static str;
|
||||
fn line_number() -> usize;
|
||||
fn print_field_types();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user