21 lines
465 B
Objective-C
21 lines
465 B
Objective-C
//
|
|
// CSSInputStream.h
|
|
// HTMLKit
|
|
//
|
|
// Created by Iska on 07/06/15.
|
|
// Copyright (c) 2015 BrainCookie. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "HTMLInputStreamReader.h"
|
|
|
|
@interface CSSInputStream : HTMLInputStreamReader
|
|
|
|
- (void)consumeWhitespace;
|
|
- (NSString *)consumeIdentifier;
|
|
- (NSString *)consumeStringWithEndingCodePoint:(UTF32Char)endingCodePoint;
|
|
- (UTF32Char)consumeEscapedCodePoint;
|
|
- (NSString *)consumeCombinator;
|
|
|
|
@end
|