Prepping to move completion provider to a re-usable module

This commit is contained in:
Ramya Achutha Rao
2017-06-21 14:08:42 -07:00
parent d51eaa45c8
commit a057a5974a
16 changed files with 349 additions and 286 deletions

View File

@@ -4,11 +4,12 @@
*--------------------------------------------------------------------------------------------*/
import * as vscode from 'vscode';
import { getNode, isStyleSheet, getNodesInBetween } from './util';
import { getNodesInBetween } from './util';
import parse from '@emmetio/html-matcher';
import parseStylesheet from '@emmetio/css-parser';
import Node from '@emmetio/node';
import { DocumentStreamReader } from './bufferStream';
import { DocumentStreamReader } from './emmetForVSCode/bufferStream';
import { getNode, isStyleSheet } from './emmetForVSCode/emmetUtils';
const startCommentStylesheet = '/*';
const endCommentStylesheet = '*/';