Files
swiftpm-stencil/Stencil/Lexer.swift
2014-10-25 13:04:35 +01:00

22 lines
403 B
Swift

//
// Lexer.swift
// Stencil
//
// Created by Kyle Fuller on 24/10/2014.
// Copyright (c) 2014 Cocode. All rights reserved.
//
import Foundation
public struct Lexer {
public let templateString:String
public init(templateString:String) {
self.templateString = templateString
}
public func tokenize() -> [Token] {
return [Token.Text(value: templateString)]
}
}