fix(#108): remove absolute path in emitted d.ts

This commit is contained in:
harttle
2019-02-26 00:43:30 +08:00
parent 75b3e15ca9
commit 53a835ab54
103 changed files with 275 additions and 343 deletions
+7 -7
View File
@@ -1,12 +1,12 @@
import * as lexical from '../parser/lexical'
import assert from '../util/assert'
import Scope from 'src/scope/scope'
import { range, last } from 'src/util/underscore'
import { isComparable } from 'src/drop/icomparable'
import { NullDrop } from 'src/drop/null-drop'
import { EmptyDrop } from 'src/drop/empty-drop'
import { BlankDrop } from 'src/drop/blank-drop'
import { isDrop } from 'src/drop/idrop'
import Scope from '../scope/scope'
import { range, last } from '../util/underscore'
import { isComparable } from '../drop/icomparable'
import { NullDrop } from '../drop/null-drop'
import { EmptyDrop } from '../drop/empty-drop'
import { BlankDrop } from '../drop/blank-drop'
import { isDrop } from '../drop/idrop'
const binaryOperators: {[key: string]: (lhs: any, rhs: any) => boolean} = {
'==': (l: any, r: any) => {