| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, |
| * software distributed under the License is distributed on an |
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| * KIND, either express or implied. See the License for the |
| * specific language governing permissions and limitations |
| * under the License. |
| */ |
| |
| |
| import * as util from './a/b/util'; |
| import * as zrUtil from 'zrender/core/util'; |
| import {someInZrUtil1 as someInZrUtil1Alias, zz} from 'zrender/core/util'; |
| import {color2 as color2Alias, color, color3, color4} from 'zrender/core/color'; |
| import Some from 'some'; |
| import Some2 from 'some2'; |
| |
| export {someInZrUtil2} from 'zrender/src/core/util'; |
| |
| export * from './echarts'; |
| export {default as defaultAsBB} from './xx/yy'; |
| export {exportSingle} from './xx/yy'; |
| |
| export {zrUtil}; |
| |
| var propInZrUtil = zrUtil.some; |
| |
| export {propInZrUtil}; |
| export {color}; |
| |
| export {Some}; |
| export {color2Alias}; |
| |
| import 'ssssss'; |
| |
| someInZrUtil1Alias(); |
| zz(); |
| |
| var color4Renamed = color4; |
| |
| export {color4Renamed}; |
| |
| |
| export function exportSingleFn() { |
| } |
| |
| var b = util.b; |
| var c = Some; |
| c(b); |
| |
| if (__DEV__) { |
| console.log('asdfasdf', Some); |
| assert(b, 'asdfasd'); |
| } |
| |
| color2Alias(); |
| color3(); |
| var ss = new Some2(); |
| ss(); |
| var pureLocalVar = 'pure'; // jshint ignore:line |
| |
| |
| function b() { |
| a++; |
| |
| innerSingleVarRenamed = innerSingleVar; |
| |
| if (__DEV__ ) { |
| console.log('zvcx'); |
| alert('v44'); |
| } |
| } |
| |
| |
| export var exportSingleVar = 'aa'; |
| |
| var innerSingleVar = 'cc'; |
| var innerSingleVarRenamed |
| export {innerSingleVar as innerSingleVarAlias, innerSingleVarRenamed}; |
| export {innerSingleVar as innerSingleVarAlias2}; |
| |
| |
| |