Zé Vicente wrote: > What means to have many permutations? Is it bad? In terms of code, > what it means? > When gwt compiles to javascript, one of the output lines says something like "Compiling 6 permutations". The number of permutations is the number of browsers your compiling for, multiplied by the number of languages. You can also get more permutations for other reasons, depending on what you're doing.
Each permutation takes time to process. The more you have, the longer the compile. There's nothing wrong with lots of permutations, except that for development, you generally only need to compile for one browser and one language at a time. So your dev cycle should involve compiling for only one permutation so that the compile is as quick as possible. Paul -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=.
