clemos / haxe-sublime-bundle

Sublime Text bundle for Haxe programming language
Apache License 2.0
235 stars 86 forks source link

Improving package pattern matching #186

Closed MattTuttle closed 9 years ago

MattTuttle commented 9 years ago

Improving package pattern matching so that it more closely matches what Haxe allows.

package;
package foo;
package foo.bar.baz;
package foo1.bar;

Invalid patterns

package foo.bar.;
package foo.2bar;
package .foo.bar;

Interestingly enough even GitHub gets it wrong...

clemos commented 9 years ago

Great thanks !