getNode is not needed by the helper module

This commit is contained in:
Ramya Achutha Rao
2017-06-21 14:47:42 -07:00
parent b7afeff71d
commit 1a11b9dd4f
12 changed files with 55 additions and 57 deletions

View File

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