Important question regarding import statement

Hypothetically, if I were to do this:

import flash.events.*;
import flash.display.*;
import flash.net.*;

instead of:

import flash.events.Event;
import flash.display.Stage;
import flash.net.LocalConnection;

what would the consequences be? could that cause Flash Player to crash because of too much overhead? thx for your feedback!