c9s
c9s
A `mayignore` group was added to ignore redundant tests on travis.
Why did you close this @@?
No it's not implemented in PHP yet. it's still bash code right now.
yeah I know that. :) however they made the spec & implementation way too complicated. and they tries to constraint APIs by making interfaces. (there are too many methods defined...
The specification is not finalized yet. I am currently thinking about the request body part for something like file uploading or multi-part contents. I think it's the most critical part....
I think this would also work for PHPSGI: http://search.cpan.org/%7Emiyagawa/PSGI-1.102/PSGI.pod#The_Input_Stream http://search.cpan.org/~miyagawa/PSGI-1.102/PSGI.pod#The_Input_Stream > On Sep 17, 2015, at 15:46, unbit [email protected] wrote: > > Completely agree, i am checking your spec, but...
Hi ! I just updated the spec for input stream: https://github.com/phpsgi/phpsgi/blob/master/SPEC.md#the-input-stream
The main reason is that `ParseExpr` doesn't parse the import declaration, hence the external package type is unknown. `parser.parseFile`: https://github.com/golang/go/blob/master/src/go/parser/parser.go#L2456 `parser.ParseExpr`: https://github.com/golang/go/blob/master/src/go/parser/interface.go#L174
The import decl is handled outside of `ParseFile` and `ParseExpr`: https://github.com/golang/go/blob/master/src/go/build/build.go#L729
It seems that we need to add the package decl into the check manually when using types.Eval: ``` go type Checker struct { // package information // (initialized by NewChecker,...