naga 0.3.0

Shader translation infrastructure
Documentation
1
2
3
4
5
6
7
8
use std::ops::Range;

#[derive(Debug, Clone)]
#[cfg_attr(test, derive(PartialEq))]
pub struct TokenMetadata {
    pub line: usize,
    pub chars: Range<usize>,
}