packages feed

yi-mode-javascript 0.13.4 → 0.13.5

raw patch · 2 files changed

+7/−1 lines, 2 filesdep ~base

Dependency ranges changed: base

Files

src/Yi/Lexer/common.hsinc view
@@ -36,7 +36,11 @@           Nothing -> (AlexEOF, lookahead)           Just _  -> (AlexError input', lookahead)       (AlexLastSkip input'' len, _, lookahead) -> (AlexSkip input'' len, lookahead)+#if MIN_TOOL_VERSION_alex(3,2,0)+      (AlexLastAcc k input'' len, _, lookahead) -> (AlexToken input'' len (alex_actions ! k), lookahead)+#else       (AlexLastAcc k input'' len, _, lookahead) -> (AlexToken input'' len k, lookahead)+#endif   -- Same as alex_scan_tkn, but also return the length of lookahead.
yi-mode-javascript.cabal view
@@ -3,7 +3,7 @@ -- see: https://github.com/sol/hpack  name:           yi-mode-javascript-version:        0.13.4+version:        0.13.5 synopsis:       Yi editor javascript mode category:       Yi homepage:       https://github.com/yi-editor/yi#readme@@ -39,6 +39,8 @@     , yi-core     , yi-language     , yi-rope+  build-tools:+      alex >= 3.0.3 && < 3.2.0 || >= 3.2.1   exposed-modules:       Yi.Config.Default.JavaScriptMode       Yi.Mode.JavaScript