1
0

API-CHANGES.txt 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. 0.12.3 (wip):
  2. + Package
  3. + >>load
  4. + >>loadFromNamespace:
  5. + Package class
  6. + >>load:
  7. + >>load:fromNamespace:
  8. + PackageTransport
  9. + >>load
  10. + PackageHandler
  11. + >>load:
  12. + AmdPackageHandler
  13. + >>load:
  14. 0.12.2:
  15. * Collection >> contains: is deprecated in favor of anySatisfy:
  16. + Announcer
  17. + >>on:doOnce:
  18. + String
  19. + >>uriEncoded
  20. + >>uriDecoded
  21. + >>uriComponentEncoded
  22. + >>uriComponentDecoded
  23. + Collection
  24. + >>removeAll
  25. + >>ifEmpty:ifNotEmpty:
  26. + >>ifNotEmpty:ifEmpty:
  27. + >>anyOne
  28. + >>noneSatisfy:
  29. + >>anySatisfy:
  30. + >>allSatisfy:
  31. 0.12.0:
  32. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  33. * Existing classes moved to new KernelInfrastructure package
  34. * ImporterExporter
  35. * are now StreamExporters
  36. * aware of AMD namespaces
  37. * support transport types and commit channels
  38. + Node
  39. + >>nextChild
  40. + >>method
  41. + >>postCopy
  42. + >>isCascadeNode
  43. + >>isLastChild
  44. + BlockNode
  45. + >>nextNode:
  46. + >>nextChild
  47. + SendNode
  48. + >>isCascadeSendNode
  49. + >>shouldBeAliased
  50. + CompiledMethod>>sendTo:arguments:
  51. + Array
  52. + >>addFirst:
  53. + >>removeLast
  54. + Number
  55. + >>ceiling
  56. + >>floor
  57. + >>asNumber
  58. + >>//
  59. + >>cos
  60. + >>sin
  61. + >>tan
  62. + >>arcCos
  63. + >>arcSin
  64. + >>arcTan
  65. + >>log
  66. + >>log:
  67. + >>raisedTo:
  68. + >>sign
  69. + >>**
  70. + >>ln
  71. + >>e
  72. + String
  73. + class>>esc
  74. + >>asMutator
  75. + >>capitalized
  76. + >>isCapitalized
  77. + JSProxy>>printString
  78. + Behavior
  79. + >>ownProtocols
  80. + >>ownMethods
  81. + JSStream>>nextPutSendIndexFor:
  82. + InterfacingObject class
  83. + Interpreter class
  84. + DocumentFragmentTag class
  85. + AbstractExporter class
  86. + PlatformInterface class
  87. - Node>>extent
  88. - JSStream>>nextPutStatement:with:
  89. - Smalltalk.installSuperclass()
  90. - ClassReferenceNode class (now handled via VariableNode)
  91. 0.11.0:
  92. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  93. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  94. * Object>>printString
  95. * replace >>printString with >>printOn:
  96. * replace >>storeString with >>printString
  97. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  98. * Package>>fetch: is now Package>>load:
  99. * Package>>fetch:prefix: is now Package>>load:prefix:
  100. * Queue>>front replaced by Queue>>next
  101. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  102. * Queue>>back: replaced by Queue>>nextPut:
  103. * smalltalk.addMethod() does not use explicit JS selector
  104. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  105. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  106. * String>>asJavaScriptSelector moved to Kernel-Objects package
  107. + Object>>asString
  108. + Object>>putOn:
  109. + String>>isVowel
  110. + Collection>>putOn:
  111. + CharacterArray>>putOn:
  112. + Stream>><<
  113. + Stream>>write
  114. + SequenceableCollection>>newStream
  115. + SequenceableCollection>>readStream
  116. + SequenceableCollection>>stream
  117. + SequenceableCollection>>streamClass
  118. + SequenceableCollection>>writeStream
  119. + Collection>>isImmutable
  120. + Stream>>nextPutString:
  121. + StringStream>>nextPutString:
  122. + JSStream>>nextPutClassRefFunction:
  123. + String>>crlfSanitized
  124. + inlined Block now also responds to >>value:
  125. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  126. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  127. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  128. + Parser: Symbols for binarie selectores
  129. + Package>>commit
  130. + AIContext>>initializeLocals
  131. + ASTInterpreter>>withBlockContext:
  132. + smalltalk.allSelectors()
  133. + Object>>isCompiledMethod
  134. + Object>>isPackage
  135. + Object>>isBehavior
  136. + ClassMoved Announcemen class
  137. + Behavior>>includesBehavior:
  138. + Environment>>classes
  139. + Environment>>allSelectors
  140. + Environment>>removeProtocol:
  141. + Environment>>renameProtocol:to:in:
  142. + CompiledMethod>>protocol:
  143. + Smalltalk>>globalJsVariables
  144. + Smalltalk>>addGlobalJsVariable:
  145. + Smalltalk>>deleteGlobalJsVariable:
  146. - Object>>storeOn:
  147. - Object>>log:block:
  148. - Object>>printNl
  149. - Compiler-IR.st >>javascriptSelector
  150. - Compiler-IR.st >>nextPutVar:
  151. - Kernel-Collections.st >>asSuperSelector
  152. - Collection>>readStream
  153. - Collection>>stream
  154. - Collection>>streamClass
  155. - Collection>>writeStream
  156. - Symbol class (replaced with String)
  157. - IRInlinedNonLocalReturn class
  158. - IRInlinedSend>>nonLocalReturnInliner
  159. - IRNonLocalReturnInliner class
  160. - Package>>dependencies
  161. - Package>>dependencies:
  162. - Package>>properties
  163. - Package>>jsProperties
  164. - Package>>jsProperties:
  165. - Package>>propertiesAsJSON
  166. - Package>>propertyAt:
  167. - Package>>propertyAt:ifAbsent:
  168. - Package>>propertyAt:put:
  169. - Browser>>ajaxPutAt:data: